Skip to content

Instantly share code, notes, and snippets.

@abenson
Last active May 9, 2023 22:12
Show Gist options
  • Save abenson/a691b9d137c9301dbc3397e54e990cd4 to your computer and use it in GitHub Desktop.
Save abenson/a691b9d137c9301dbc3397e54e990cd4 to your computer and use it in GitHub Desktop.
Drive Trim Timer
#!/bin/sh
TIMEFILE=$(dirname $0)/fstrim.timer
LOGFILE=/var/log/fstrim.log
date -u >> $LOGFILE
/usr/bin/fstrim -a -v >> $LOGFILE 2>&1
touch $TIMEFILE
#!/bin/sh
TIMEFILE=$(dirname $0)/fstrim.timer
exec /usr/bin/snooze -w0 -s 7d -t $TIMEFILE $(dirname $0)/dotrim $TIMEFILE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment