From 4a4eed00f44607fedd6cbcad7f14006f920907f5 Mon Sep 17 00:00:00 2001 From: Marty Sluijtman Date: Fri, 8 Dec 2023 16:55:40 +0100 Subject: [PATCH] Tiny changes --- src/bin/add-bookmark | 2 +- src/bin/copy-bookmark | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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