Skip to content

Instantly share code, notes, and snippets.

@kunpengku
Created June 16, 2014 05:40
Show Gist options
  • Save kunpengku/3a2d4048a172edd7f217 to your computer and use it in GitHub Desktop.
Save kunpengku/3a2d4048a172edd7f217 to your computer and use it in GitHub Desktop.
删除大小为0的文件。
#!/bin/bash
#delete file which size equal zero
ls -l > .ll.txt
while read dt
do
size=`echo "$dt" | awk '{print $5}'`
if [ "$size" == "0" ]
then
name=`echo "$dt" | awk '{print $9}'`
rm -rf ./$name
fi
done < .ll.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment