我正在寻找一种方法来忽略文件的前两行,然后翻转ips / dns'第二行之后的一切。请注意,我sed remove
第一行(标题)。
bash-4.4$ less test
1 #remove
2 #comment 1
3 #comment 2
4 foo 127.0.0.1
5 bar 127.0.0.1
我正在寻找的结果是
bash-4.4$ less test-fixed
1 #comment 1
2 #comment 2
3 127.0.0.1 foo
4 127.0.0.1 bar
我一直在尝试的命令管道是:
FILE=/tmp/test ; sed '1d' $FILE | awk 'NR>2 { t = $1; $1 = $2; $2 = t; print; } ' >| /tmp/test-fixed
显然是当前记录的NR>2
序号,并跳到第3行,因此我认为我需要一个迭代循环来打印它们但是在达到N3
之前不能运行?不确定......
答案 0 :(得分:4)
您可以像这样使用awk
:
awk 'NR>3{s=$NF; $NF = $(NF-1); $(NF-1) = s} 1' file
1 #remove
2 #comment 1
3 #comment 2
4 127.0.0.1 foo
5 127.0.0.1 bar
答案 1 :(得分:3)
awk 'NR > 1 && NR <= 3; NR > 3 {print $2, $1}' input.txt
<强>输出强>
#comment 1
#comment 2
127.0.0.1 foo
127.0.0.1 bar
答案 2 :(得分:2)
包含行号
$ awk 'NR==1 {next}
NR>3 {t=$3; $3=$2; $2=t}
{print NR-1,$2,$3}' file
1 #comment 1
2 #comment 2
3 127.0.0.1 foo
4 127.0.0.1 bar
或高尔夫版
$ awk 'NR>3{t=$3;$3=$2;$2=t} --$1' file