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.
次の形式のファイルがあります
string string string ... string string string ... ... string string string ...
別のファイルを取得して、各行について、最初のファイルのみがstringその行に表示されるようにします(つまり、各行の最初の空白の前の部分のみを取得します)。
string
Ubuntuのコマンドラインでそれを行うにはどうすればよいですか?
私はあなたがこれを望んでいると思います:
awk '{print $1}' < input.txt > output.txt
別の可能な解決策は、カットを使用することです。
cut -f1 -d" " input.txt > output.txt