awk '{
for(i = 1; i <= NF; i++) {
j = i + 1;
if($i == $j) {
print FNR " | " $0 " | " $i;
}
}
}' myfile
次の行がある場合myfile
:
There is a storm storm outside .
My my car is red .
出力は次のようになります。
1 | There is a storm storm outside . | storm
大文字と小文字の区別を無視して表示するコマンドを作成するにはどうすればよいですか?
2 | My my car is red . | my