find命令
find /etc -name "services" -exec ls -l {} \;
find /etc -name "services" |xargs ls -l\
find /etc -name "services"
find /etc -name "services" -print|xargs ls -l\
find . -type -exec ls {} \;
find /etc -type f -name "services"
find ~ -name "1.txt" -exec rm -f {} \;
ls
find ~ -name "1.txt" -mtime +7 -exec rm -f {} \;
删除7天以前的
find ~ -name "1.txt" -mtime +7 -|args rm -f
删除7天以前的
作者:大数据和人工智能躺过的坑
出处:http://www.cnblogs.com/zlslch/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文链接,否则保留追究法律责任的权利。
如果您认为这篇文章还不错或者有所收获,您可以通过右边的“打赏”功能 打赏我一杯咖啡【物质支持】,也可以点击右下角的【好文要顶】按钮【精神支持】,因为这两种支持都是我继续写作,分享的最大动力!