Removing files echo delete

1.2
Lukas Macura 2016-04-24 05:23:32 +02:00
parent f5b88cc4d9
commit 276aef1689
1 changed files with 1 additions and 1 deletions

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