查找具有最新更新且名称具有特定前缀的目录
我在特定目录中有许多以相同前缀开头的目录(例如 foo123、foo345、foo234、foo456h,..)。
现在我想找到最近创建(修改)的前缀为 foo 的目录。完成这项工作的最佳方法是什么?
I have number of directories starting with same prefix (say foo123, foo345, foo234, foo456h,..) in a particular directory.
Now I want to find directory with prefix foo which is created(modified) most recently. What would be best way to do this job?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
与其他非常相似
ls -ltrd foo* |尾部-1 | awk '{print $8}'
或者如果您想要列表而不使用
awk
,awk
只是返回名称very similar to the others
ls -ltrd foo* | tail -1 | awk '{print $8}'
or if you want the list do it without
awk
,awk
is just returning the nameYF
YF
怎么样:
how about: