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.
tail */filename
動作しますが
tail -1 */filename
そうではありません。どうしてこれなの?そして、ループなしでこのタスクを実行するための1つのライナーはありますか?
head -1 */filename
いくつかの奇妙な理由で動作します。
複数のファイルでhead動作しますが、動作しません。ただし、代わりに引数を使用して機能します。-1tail-n
head
-1
tail
-n
tail -n 1 */filename
それでも答えを探している場合は、以下を試してください:
ファイルが利用可能なディレクトリに移動し、以下のコマンドを実行します
ls -1|while read file; do tail -1 $file; done