其他分享
首页 > 其他分享> > 重复打印文件首行n次

重复打印文件首行n次

作者:互联网

使用awk方式:

[root@x112 linshi]# cat 10_for.sh
#!/bin/bash
#describtion awk print first line ten time

Line=$(cat c.txt|wc -l)
awk '{if(NR==1) {for(i=1;i<='"$Line"';i++) {print $0}}}' c.txt

 

 

使用sed方式:

[root@x112 linshi]# sed '1h;2,$g'  c.txt 
1.1.1.1
1.1.1.1
1.1.1.1
1.1.1.1

 

 

标签:1.1,打印文件,重复,首行,cat,sed,awk,x112,txt
来源: https://www.cnblogs.com/xiaofeng666/p/13870278.html