Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以在单个命令(无循环)中清除目录中每个文件的内容?
使用截断:
truncate -s 0 directory/* &> /dev/null
这很丑陋,但它有效:
find . -type f -exec sh -c 'echo -n "" > $1' sh {} \;
这将清除每个子目录中的每个文件。
只清除当前目录中的文件:
for i in *; do cat /dev/null > $i; done
(是的,这是一个循环,但它是一条线。)