Tiny changes

This commit is contained in:
Nox Sluijtman 2023-12-08 16:55:40 +01:00
parent 1bd76ea8e1
commit 4a4eed00f4
2 changed files with 3 additions and 3 deletions

View file

@ -20,7 +20,7 @@ addUrl(){
"$(curl -s "$url" | grep '<title' | sed 's/<title>\(.*\)<\/title>/\1/')" \
>> $bookmarks
fi
printf "added '%s' to '%s'" "$url" "$bookmarks"
printf "added '%s' to '%s\n'" "$url" "$bookmarks"
}

View file

@ -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