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 スクリプトを使用して単純な CSV を解析しようとしている皆さん。スクリプトは実行されますが、結果が 2 つではなく 1 つしか得られません。
CSV ファイル:
Test4|Test5|Test6 Test1|Test2|Test3
脚本:
#!/bin/bash awk -F "|" 'NR > 0 {print $2}' UserAgents.csv
実際の出力:
Test5
期待される出力:
Test5 Test2