awk输出时不换行 Posted on 2008-11-26 In Linux 输出时使用printf 输出后,利用 tr -d 'n' 实现替换换行 awk 'BEGIN{ORS=""}{print $0;}' //推荐 awk '{printf("%s",$0);}'