美文网首页shell 命令
shell 获取最新文件的文件名称

shell 获取最新文件的文件名称

作者: 一颗浪星 | 来源:发表于2019-07-23 17:23 被阅读0次

ls -lt | head -n 2 |tail -n 1 | awk '{print $9}

按时间倒序获取头两行
ls -lt | head -n 2

获取头两行的最后一行(也就是 非 total 那行)
tail -n 1

打印出第九字段,此处为文件名
awk '{print $9}

相关文章

网友评论

    本文标题:shell 获取最新文件的文件名称

    本文链接:https://www.haomeiwen.com/subject/masalctx.html