在ubuntu编写一个shell脚本,删除当前目录下所有文件大小为0的文件名为*.c文件。
find . -name "*.c" -type f -size 0c | xargs -n 1 rm -f
有帮助的话望采纳,谢谢!