Operating System - Linux
1753785 Members
7365 Online
108799 Solutions
New Discussion

Re: Using paste command for 2 files

 
Muthukumar_5
Honored Contributor

Re: Using paste command for 2 files

You can also use this ,

paste test.log test1.log | perl -pne 's/\s+//;' > file-text

hth.
Easy to suggest when don't know about the problem!
Muthukumar_5
Honored Contributor

Re: Using paste command for 2 files

You can also try as,

awk '{ ln=$1;getline < "file-url";print $1ln }' file-joa > file-text

hth.
Easy to suggest when don't know about the problem!