Removing files echo delete

This commit is contained in:
Lukas Macura
2016-04-24 05:23:32 +02:00
parent f5b88cc4d9
commit 276aef1689
+1 -1
View File
@@ -14,7 +14,7 @@ zaf_cache_init(){
zaf_trc "Cache: Removing stale entries"
(cd $ZAF_CACHE_DIR && find ./ -type f -name '*.info' -mmin +1 | \
while read line ; do
echo rm -f $line $(basename $line .info)
rm -f $line $(basename $line .info)
done
)
else