mirror of
https://github.com/snachodog/handy-debian-scripts.git
synced 2025-04-03 10:41:24 -06:00
Created paperless_tmp_clean.sh so that to manually clean the Paperless-ngx temp for cleaning out them out. needs to be set to a cron schedule
3 lines
94 B
Bash
3 lines
94 B
Bash
#!/bin/bash
|
|
find /var/lib/docker/overlay2/${TMP}/diff/tmp -type f -atime +1 -exec rm -f {} \;
|