清除log

find /var -type f -exec rm -v {} /;
使用-exec参数时,必须以“/;”结尾,否则,系统会提示“find遗漏-exec参数”,命令将无法执行。
exec选项后面跟随着所要执行的命令或脚本,然后是一对儿{},一个空格和一个/,最后是一个分号。
Linux find命令详解 http://edu.codepub.com/2010/0302/20657.php

>;filename

你可能感兴趣的:(清除log)