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.
本当に簡単な質問です。列が3つ未満の場合は、リストから行を削除するだけです。
例えば:
a b c a b <--- This one needs to disappear a b c
awk NFがそれを行うと確信していますが、正しく理解できないようです。
前もって感謝します!
sed、grep、awkはすべてこの仕事をすることができます。あなたはawkを好むので、これが役立つかどうか見てみましょう。
awk 'NF>=3' file