search for: lastname2

Displaying 6 results from an estimated 6 matches for "lastname2".

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 > > > to get the abo...
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" "$line2&...
2016 Jun 07
2
for loop example
...PYBmMxD=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 line2 in $(cat...
2016 Jun 09
0
for loop example
...t-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 lo...
2008 Jun 11
1
Squid/ntlm_auth issues with two user accounts (all other accounts on the domain work).
...UAADAAAAGAAYAGsAAAAYABgAgwAAAA0ADQBIAAAADwAPAFUAAAAHAAcAZAAAAAAAAACbAAAABoIAAgUBKAoAAAAPQ0FSSUJCRUFOLUFCU0JFQVRSSUNFLkJVVExFUlBVUi0wMDEA2pj8Lh8Z0ADamPwuHxnQANqY/C4fGdBmeJnHb+DBs4t00vR1y/hqokvuxtK8U8A=' from Squid ntlm-auth[19104](libntlmssp.c:268): Empty LM pass detection: user: 'FIRSTNAME2.LASTNAME2', ours:'cx?r??Su?Q???/??1', his: ''(length: 24) ntlm-auth[19104](libntlmssp.c:280): Empty NT pass detection: user: 'FIRSTNAME2.LASTNAME2', ours:'', his: 'fx?????t?u?j?K??S?(length: 24) ntlm-auth[19104](libntlmssp.c:294): checking domain: 'DOMAIN', use...
2016 Jun 07
0
for loop example
On 6/3/2016 10:41 PM, Indunil Jayasooriya wrote: > I need a OUTPUT like this > > > *firstname1 lastname1firstname2 lastname2* An obvious solution is to use Perl. I suggest searching Stackoverflow for a solution using that language. While checking, I discovered the paste program does just what you want. So try "man paste".