17 lines
363 B
Plaintext
Raw Normal View History

2021-02-27 01:30:26 +01:00
#!/bin/bash
# File : pre-new
# Author : Jeff LANCE <email@jefflance.me>
# Date : 04.05.2020
2021-03-01 22:41:37 +01:00
# Last Modified Date: 01.03.2021
2021-02-27 01:30:26 +01:00
# Last Modified By : Jeff LANCE <email@jefflance.me>
2021-03-01 22:41:37 +01:00
# purging trash
notmuch search --output=files --format=text0 \
-- tag:deleted date:...7d | xargs -0 --no-run-if-empty rm
2021-02-27 01:30:26 +01:00
exit 0
2021-03-01 22:41:37 +01:00
2021-02-27 01:30:26 +01:00
# vim:ft=sh