[root@localhost opt]# cat A.txt A产品编号 A价格 001 10 002 20 003 30 [root@localhost opt]# awk 'BEGIN{print "Name Belt\n-----------------"}{print $0}' A.txt Name Belt ----------------- A产品编号 A价格 001 10 002 20 003 30
本文共 256 字,大约阅读时间需要 1 分钟。
[root@localhost opt]# cat A.txt A产品编号 A价格 001 10 002 20 003 30 [root@localhost opt]# awk 'BEGIN{print "Name Belt\n-----------------"}{print $0}' A.txt Name Belt ----------------- A产品编号 A价格 001 10 002 20 003 30
转载于:https://blog.51cto.com/liveforlinux/759018