Search Results

Search: Posts Made By: Don Cragun
14,393
Posted By Don Cragun
The following awk script seems to do what you...
The following awk script seems to do what you said you want:
awk '
BEGIN { FS = OFS = ","
}
FNR == NR {
k[$2] = $1
next
}
{ if($12 == 1 && $1 in k) $6 = k[$1]
}
1' file2 file1
But, with...
Showing results 1 to 1 of 1

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