微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

linux系统中给数据加上列号

 

1、测试数据

[root@centos7 test]# cat a.txt
e d g e
s d g w
a x d g
n d i d

 

2、

[root@centos7 test]# cat a.txt
e d g e
s d g w
a x d g
n d i d
[root@centos7 test]# seq -s " " $(head -n 1 a.txt | awk '{print NF}')
1 2 3 4
[root@centos7 test]# seq -s " " $(head -n 1 a.txt | awk '{print NF}') | cat - a.txt
1 2 3 4
e d g e
s d g w
a x d g
n d i d

 

3、

[root@centos7 test]# cat a.txt
e d g e
s d g w
a x d g
n d i d
[root@centos7 test]# head -n 1 a.txt | awk '{for (i = 1; i <= NF; i++) printf("%s ", i); printf("\n")}'
1 2 3 4
[root@centos7 test]# head -n 1 a.txt | awk '{for (i = 1; i <= NF; i++) printf("%s ", i); printf("\n")}' | cat - a.txt
1 2 3 4
e d g e
s d g w
a x d g
n d i d

 

 

4、

[root@centos7 test]# cat a.txt
e d g e
s d g w
a x d g
n d i d
[root@centos7 test]# head -n 1 a.txt | awk '{for (i = 1; i < NF; i++) printf("%s ", i); print NF}'
1 2 3 4
[root@centos7 test]# head -n 1 a.txt | awk '{for (i = 1; i < NF; i++) printf("%s ", i); print NF}' | cat - a.txt
1 2 3 4
e d g e
s d g w
a x d g
n d i d

 

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。