Search Results

Search: Posts Made By: dprakash
2,647
Posted By Franklin52
awk 'NR==1{s=substr($0,2);next}p{print p}{p=s...
awk 'NR==1{s=substr($0,2);next}p{print p}{p=s $0}' file
2,647
Posted By Franklin52
awk 'NR==1{s=substr($0,2);next}$0=s $0' file
awk 'NR==1{s=substr($0,2);next}$0=s $0' file
2,647
Posted By bartus11
awk 'NR==1{sub("H","");d=$0;next}{$0=d$0}1'...
awk 'NR==1{sub("H","");d=$0;next}{$0=d$0}1' source > output
2,647
Posted By clx
may be: awk 'NR==1 { date= substr($0,2,8)}...
may be:

awk 'NR==1 { date= substr($0,2,8)} NR> 1 { print date$0 }' source_file
Showing results 1 to 4 of 4

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