红联Linux门户
Linux帮助

提示find: missing argument to `-exec'的解决

发布时间:2017-06-03 10:31:22来源:cnblogs.com/kerrycode作者:潇湘隐者
今天使用find命令查找删除文件时,遇到下面错误,这个是因为在{}和\之间必须要有空格,否则会报上面的错。以前都没有注意到这个细节,特此记录一下。
 
[root@DB-Server full]#  find  . -maxdepth 1 -type d  -mtime +3 -exec rm -rf {}\;
find: missing argument to `-exec'
[root@DB-Server full]#  find  . -maxdepth 1 -type d  -mtime +3 -exec rm -rf {} \;
[root@DB-Server full]#
 
图示:
提示find: missing argument to `-exec'的解决
 
本文永久更新地址:http://www.linuxdiyf.com/linux/31234.html