You have two options: Use -F option: awk -F $'\t' '{...}' or set the field separator ( FS ) in the BEGIN section: awk 'BEGIN{FS="\t"}{...}' ...
確定! 回上一頁