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.
私はファイルを持っています
cat file ab,12 ab,45 ab,23 bh,32 bl,12 ab,10 bh,13
ファイルには最初のパラメーターを持つ重複した行があります
コンマで区切られた特定のパラメーターの一意の値を含む出力が必要です
たとえば、出力
cat file ab,12 bh,32 bl,12
次のコマンドは、この例で機能します。
sort -u -s -t, -k1,1