Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のコマンドを使用して、ファイルから重複を削除しています。
awk -F"," '!x[$1]++' test.csv
列1の大文字と小文字を区別しないようにするにはどうすればよいですか?
試してみawk -F"," '{IGNORECASE = 1} !x[$1]++' test.csvましたが、うまくいかないようです。
awk -F"," '{IGNORECASE = 1} !x[$1]++' test.csv
toupperの使用:
awk -F"," '!x[toupper($1)]++' test.csv
awk -F"," '!x[tolower($1)]++' test.csv