SWARM 3 DAYS OLD CLEANING

This commit is contained in:
fred 2024-02-15 18:07:23 +01:00
parent 98769ed48a
commit 313e1a2d6c
1 changed files with 2 additions and 2 deletions

View File

@ -71,7 +71,7 @@ if [[ -d ~/.zen/tmp/${IPFSNODEID} ]]; then
fi
## CLEANING SWARM 30 DAYS OLD
find ~/.zen/tmp/swarm/ -mtime +30 -type d -exec rm -Rf '{}' \;
## CLEANING SWARM 3 DAYS OLD
find ~/.zen/tmp/swarm/ -mtime +3 -type d -exec rm -Rf '{}' \;
exit 0