私のファイルの内容は次のとおりです。
this line 1 no un1x
this lines 22 0
butbutbut this 33 22 has unix
but not 1
THIS is not
butbutbut ffff
second line
awk 'NR==2 && NR==3 {f=$0;next} NR ==5 &&f{print;print f}' awk.write
ここで問題は、5行以降に2行と3行を移動したい値だけをf
保存できるという点だ。nr==3
答え1
努力する:
$ awk '
FNR == 2 { l2 = $0; next } # Save 2nd line
FNR == 3 { l3 = $0; next } # Save 3rd line
FNR == 5 { # Print 5th line, follow 2nd, 3rd
print
print l2
print l3
next
}
1 # Print other lines
' <file
ファイルに5行未満があると、2行目と3行目が失われます。
答え2
一方通行:
awk 'NR==2 || NR==3{a[i++]=$0;next}1;NR==5{for(j=0;j<2;j++){print a[j];}}' file
答え3
awk 'NR == 2 || NR == 3 {l = l RS $0; next}
NR == 5 {$0 = $0 l}
{print}'
答え4
複数の変数や配列が必要です。使用awk
:
awk 'NR==2||NR==3{a[i++]=$0;next} NR==5{print;for(c=0;c<i;c++){print a[c]}next}1' file
NR==2||NR==3
2号線、3号線の場合a[i++]=$0;next
アレイを埋め、a
続行します。
NR==5
5号線ならprint
まず行を印刷します。for(c=0;c<i;c++){print a[c]}
配列を繰り返し、その内容を印刷します。
1
各行を印刷する実際の条件です。