当前位置: 代码迷 >> 综合 >> 问题解决:find: missing argument to `-exec'
  详细解决方案

问题解决:find: missing argument to `-exec'

热度:83   发布时间:2023-10-28 22:16:44.0

问题:find: missing argument to `-exec’

窗口截图

解决方法:

该行代码为:

find $DIR -mtime +$DAYS -type f -name "postgresqlbak" -exec rm { } \;

{ }两边要加空格,否则会报上面的错。

  相关解决方案