0
我正在使用linux bash。現在我想清除所有.txt文件的內容。但是,此命令「find -type f -iname' .txt'| xargs -I {} echo」「> {}」似乎不起作用。有什麼建議麼?任何有關更好解決方案的想法「find -type f -iname'* .txt'| xargs -I {} echo」「> {}」不起作用
我正在使用linux bash。現在我想清除所有.txt文件的內容。但是,此命令「find -type f -iname' .txt'| xargs -I {} echo」「> {}」似乎不起作用。有什麼建議麼?任何有關更好解決方案的想法「find -type f -iname'* .txt'| xargs -I {} echo」「> {}」不起作用
我truncate
以清除文件替換echo
和使用發現的,而不是-exec
管道到xargs
:
find . -type f -name "*.txt" -exec truncate -s 0 {} \;