例如:
cat file.txt| awk -F "\t" '{print $1}' | tr '\n' '\t' | awk -F "\t" '{print "Data_type" "\t" "Fraction \t" "Read \t" $1}'
我想打印" Fraction \ t" "读取\ t" $ 1前五次。 感谢!!!
答案 0 :(得分:0)
请勿使用cat
+ awk
,只需使用awk
See Useless Use of cat
awk '{print "Fraction\t Reads \t Fraction\t Reads \t Fraction\t Reads \t Fraction\t Reads \t Fraction\t Reads \t" $1}' file.txt
有什么问题?