我需要找到例如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
我在上面的命令中是否有任何语法错误,如何纠正相同的错误。 感谢