diff options
author | EuAndreh <eu@euandre.org> | 2023-02-27 11:09:47 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-02-27 11:09:47 -0300 |
commit | 0c1bb9c3c524370a623fb3fbc8fcb88bba188c54 (patch) | |
tree | 2de18210ac2f5de805627c8d069e24cf9fb13937 /bin/gc | |
parent | bin/forever: Add -q flag (diff) | |
download | dotfiles-0c1bb9c3c524370a623fb3fbc8fcb88bba188c54.tar.gz dotfiles-0c1bb9c3c524370a623fb3fbc8fcb88bba188c54.tar.xz |
bin/gc: Do not filter /tmp files by type "file"
Diffstat (limited to 'bin/gc')
-rwxr-xr-x | bin/gc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -118,7 +118,7 @@ gc_trash() { } gc_tmpdir() { - find "${TMPDIR:-/tmp}" -type f -atime +10 -exec rm -vf "{}" \; ||: + find "${TMPDIR:-/tmp}" -atime +10 -exec rm -vf "{}" \; ||: } gc_docker() { |