Improved encrypted paper backup guide

This commit is contained in:
Sun Knudsen 2021-03-02 16:44:24 -05:00
parent 987d6389db
commit 47588a7b69
No known key found for this signature in database
GPG key ID: 1FA767862BBD1305
11 changed files with 250 additions and 13 deletions

View file

@ -2,6 +2,27 @@
set -e
positional=()
while [[ $# -gt 0 ]]; do
argument="$1"
case $argument in
-h|--help)
printf "%s\n" \
"Usage: qr-clone.sh [options]" \
"" \
"Options:" \
" -h, --help display help for command"
exit 0
;;
*)
positional+=("$1")
shift
;;
esac
done
set -- "${positional[@]}"
tput reset
printf "%s\n" "Restoring…"