Search Results

Search: Posts Made By: orcaja
20,585
Posted By posix
with the help of cut and paste you can get the...
with the help of cut and paste you can get the result
$cut -f3 file7.txt >temp1.txt
$cut -f3 file8.txt >temp2.txt
$paste temp1.txt temp2.txt >file.txt
42,938
Posted By ripat
Pure awk: side by side: awk...
Pure awk:

side by side:
awk 'NR==FNR{a[NR]=$2; next} {print a[FNR], $2}' file1 file2

concatenated on one column:
awk '{print $2}' file1 file2
Showing results 1 to 2 of 2

 
All times are GMT -4. The time now is 02:42 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy