Created
August 11, 2018 18:11
-
-
Save weakish/1223a50e12515bf20e871edc49c18b94 to your computer and use it in GitHub Desktop.
copy #vivaldi browser bookmark file to current dir #sh
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
os="$(uname)" | |
case "$os" in | |
'Linux') | |
cp "$HOME/.config/vivaldi/Default/Bookmarks" ./ | |
;; | |
'Darwin') | |
cp "$HOME/Library/Application Support/Vivaldi/Default/Bookmarks" ./ | |
;; | |
*) | |
echo "Only supports Linux and macOS. Please send a patch or open an issue." | |
;; | |
esac |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment