1
0
mirror of https://github.com/limosek/zaf.git synced 2024-11-13 05:59:06 +01:00

Removing files echo delete

This commit is contained in:
Lukas Macura 2016-04-24 05:23:32 +02:00
parent f5b88cc4d9
commit 276aef1689

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