获取find:truncate:没有此类文件或目录错误

时间:2016-12-05 10:32:06

标签: bash

我需要找到例如2014年特定年份的文件并清空文件。试图使用下面抛出的命令

touch -t 201401010000 /tmp/from 
touch -t 201501010000 /tmp/to
find . -type f -newer /tmp/from ! -newer /tmp/to  -exec truncate -s 0 {} \;

error :- find: truncate: No such file or directory

我在上面的命令中是否有任何语法错误,如何纠正相同的错误。 感谢

0 个答案:

没有答案