Skip to content

Instantly share code, notes, and snippets.

@jadc
Created December 26, 2024 22:46
Show Gist options
  • Save jadc/21f9be5ed093ff8eae03b22c59a39ee2 to your computer and use it in GitHub Desktop.
Save jadc/21f9be5ed093ff8eae03b22c59a39ee2 to your computer and use it in GitHub Desktop.
archive script
#!/bin/sh
# Ensure script is run as superuser
if [ "$(id -u)" -ne 0 ]; then
echo "This script must be run with sudo." >&2
exit 1
fi
if [ "$#" -ne 1 ]; then
echo "Usage: $0 <destination>"
exit 1
fi
rsync -auhxAX --partial-dir=".partial" --delete --no-compress --info=progress2 --exclude-from=".exclude" "." "$1"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment