文本:
[root@VM_0_84_centos ~]# cat sshd.txt 1 2 34 5 67 8 9
循环打印上述文本
for 循环的固定格式 i=1设置i的初始变量 i<=NF i变量小于等于 NF变量的值(每行的字段数) i++ 表示i递增+1,
[root@VM_0_84_centos ~]# cat sshd.txt |awk '{for(i=1;i<=NF;i++){print $i}}'123456789
本文共 274 字,大约阅读时间需要 1 分钟。
文本:
[root@VM_0_84_centos ~]# cat sshd.txt 1 2 34 5 67 8 9
循环打印上述文本
for 循环的固定格式 i=1设置i的初始变量 i<=NF i变量小于等于 NF变量的值(每行的字段数) i++ 表示i递增+1,
[root@VM_0_84_centos ~]# cat sshd.txt |awk '{for(i=1;i<=NF;i++){print $i}}'123456789
转载于:https://www.cnblogs.com/python-cat/p/7903674.html