/ Published in: Awk
Using this command you can insert tab spaces/columns to a tab separated file.
Expand |
Embed | Plain Text
awk -F'\t' '{$5=$2;$2=_}1' OFS='\t' <infile>
You need to login to post a comment.
Using this command you can insert tab spaces/columns to a tab separated file.
awk -F'\t' '{$5=$2;$2=_}1' OFS='\t' <infile>
You need to login to post a comment.