examples/move_downloads.sh: Ignore size 0 files

Cette révision appartient à :
Albert S. 2020-08-21 11:07:31 +02:00
Parent 19e34c1904
révision 9925f12675
1 fichiers modifiés avec 1 ajouts et 0 suppressions

Voir le fichier

@ -4,6 +4,7 @@
#adhocify -d -m IN_CLOSE_WRITE -m IN_MOVED_TO -w /home/user/Downloads -w /home/user/other_dir /path/to/move_downloads.sh
INCOMING="$1"
stat -c"%s" "$INCOMING" | grep -q "^0$" && exit
#ignore partial downloads (.part in firefox, .crdownload in chrome)
echo "$INCOMING" | grep -q .part$ && exit
echo "$INCOMING" | grep -q .crdownload$ && exit