当前位置: 技术问答>linux和unix
如何删除文件大小为零的文件?
来源: 互联网 发布时间:2015-12-18
本文导语: 单纯的 rm 删不掉吧 ? | 得自己写个脚本语言 rm -i `find ./ -size 0` find ./ -size 0 -exec rm {} ; find ./ -size |xargs rm -f &非常有效 for file in * #自己定义需要删除的文件类型 do if [ ! -s...
单纯的 rm 删不掉吧 ?
|
得自己写个脚本语言
rm -i `find ./ -size 0`
find ./ -size 0 -exec rm {} ;
find ./ -size |xargs rm -f &非常有效
for file in * #自己定义需要删除的文件类型
do
if [ ! -s ${file} ]
then
rm ${file}
echo "rm $file Success!"
fi
done
rm -i `find ./ -size 0`
find ./ -size 0 -exec rm {} ;
find ./ -size |xargs rm -f &非常有效
for file in * #自己定义需要删除的文件类型
do
if [ ! -s ${file} ]
then
rm ${file}
echo "rm $file Success!"
fi
done