bin/time-machine-unthrottle
#!/usr/bin/env bash
#
# Unthrottle time machine so the backup doesn't take so long
#
# Copyright 2021, Joe Block <jpb@unixorn.ne>
if [[ "$(uname -s)" != 'Darwin' ]]; then
echo 'Sorry, this script only works on macOS'
exit 1
fi
exec sudo sysctl debug.lowpri_throttle_enabled=0