splitting tab-delimited file with awk | Unix Linux Forums | Shell Programming and Scripting
tab=" " # press the tab key add a quote at the end OLD_IFS="$IFS" rm -f filename 0* # remove past runs of output files while IFS="$tab" && read f1 f2 f3 do echo "$f1$tab$f2$tab$f2" >> "$f1" done < inputfile IFS="$OLD_IFS"...