标签: bash awk
我只想获取数据框的column4,所以我使用了:
awk '{FS="\t"; OFS="\t"}{print $4}' dataframe1.txt > dataframe2.txt
但我想避免将标题保留在第一行。
有人有主意吗?