且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

find: missing argument to `-exec'

更新时间:2022-08-15 12:53:57

今天使用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'