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适用-1于多个文件,tail但不能。但它适用于-n参数:
head
-1
tail
-n
tail -n 1 */filename
如果您仍在寻找答案,请尝试以下一项:
转到文件可用的目录并执行以下命令
ls -1|while read file; do tail -1 $file; done