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.
2 つ以上のアイテムを持つファイルの行を出力するコマンドは何unixですか。たとえば、各行にタブで区切られたアイテムを持つファイルがあります。
unix
dog elephant fox dog monkey bear bird fish puppy
上記のファイルでは、出力はfox dog monkey.
fox dog monkey
Python では次のようになります。
if len(line)> 2: print line
awkで
awk 'NF>2' file
………………
別の awk オプション:
awk '{ if ($3) print $0}' file