/ Published in: Awk
Using this command you can insert tab spaces/columns to a tab separated file.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
awk -F'\t' '{$5=$2;$2=_}1' OFS='\t' <infile>