search for: lastname1

Displaying 4 results from an estimated 4 matches for "lastname1".

Did you mean: lastname
2016 Jun 09
1
for loop example
> From: Indunil Jayasooriya <indunil75 at gmail.com> > > > > > > [root at centos67 loop]# cat file1 > > > firstname1 > > > firstname2 > > > > > > [root at centos67 loop]# cat file2 > > > lastname1 > > > lastname2 > > > > > > I need a OUTPUT like this > > > > > > > > > *firstname1 lastname1firstname2 lastname2* > > > > > > > > > But I try the below command , i get below output. what is the real > command >...
2016 Jun 07
2
for loop example
...ysBoqGo2B+BerpgPYBmMxD=ahj4LiHN6xR8H= > 3Gg at mail.gmail.com> > Content-Type: text/plain; charset=UTF-8 > > Hi list, > > Can you look in to this? > > > [root at centos67 loop]# cat file1 > firstname1 > firstname2 > > [root at centos67 loop]# cat file2 > lastname1 > lastname2 > > I need a OUTPUT like this > > > *firstname1 lastname1firstname2 lastname2* > > > But I try the below command , i get below output. what is the real command > to get the above output > > [root at centos67 loop]# for line1 in $(cat file1 ); do for...
2016 Jun 04
3
for loop example
Hi list, Can you look in to this? [root at centos67 loop]# cat file1 firstname1 firstname2 [root at centos67 loop]# cat file2 lastname1 lastname2 I need a OUTPUT like this *firstname1 lastname1firstname2 lastname2* But I try the below command , i get below output. what is the real command to get the above output [root at centos67 loop]# for line1 in $(cat file1 ); do for line2 in $(cat file2 ); do echo "$line1" &qu...
2016 Jun 09
0
for loop example
...gt; > > Content-Type: text/plain; charset=UTF-8 > > > > Hi list, > > > > Can you look in to this? > > > > > > [root at centos67 loop]# cat file1 > > firstname1 > > firstname2 > > > > [root at centos67 loop]# cat file2 > > lastname1 > > lastname2 > > > > I need a OUTPUT like this > > > > > > *firstname1 lastname1firstname2 lastname2* > > > > > > But I try the below command , i get below output. what is the real command > > to get the above output > > > >...