Skip to content

Instantly share code, notes, and snippets.

View echohn's full-sized avatar

Echo echohn

View GitHub Profile
@echohn
echohn / backup_safari_bookmarks.sh
Last active December 26, 2017 09:14
safari auto backup bookmarks bash script
#!/bin/bash
usage(){
echo "USAGE: bash $0 OUTPUT_PATH"
exit 1
}
[[ $# -ne 1 ]] && usage
backup_path=$1