diff --git a/src/bin/add-bookmark b/src/bin/add-bookmark index 5735fda..d27f13b 100755 --- a/src/bin/add-bookmark +++ b/src/bin/add-bookmark @@ -20,7 +20,7 @@ addUrl(){ "$(curl -s "$url" | grep '\(.*\)<\/title>/\1/')" \ >> $bookmarks fi - printf "added '%s' to '%s'" "$url" "$bookmarks" + printf "added '%s' to '%s\n'" "$url" "$bookmarks" } diff --git a/src/bin/copy-bookmark b/src/bin/copy-bookmark index b090472..e2ffbe3 100755 --- a/src/bin/copy-bookmark +++ b/src/bin/copy-bookmark @@ -20,8 +20,8 @@ default(){ while getopts Rhc: name; do case $name in - R) random ;; - h) usage ;; + R) random;; + h) usage;; c) menu="$OPTARG";; esac done