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.
これを使った
head -1 -q *.txt|awk '{print $1}'
これは、ファイルのコンテンツの最初の行を印刷します。では、ファイルの名前を変更する方法を教えてください。
for ループを使用できます。
for fname in *.txt do mv $fname $(head -1 -q $fname|awk '{print $1}') done