Whoops, semicolons

This commit is contained in:
Siina Mashek 2022-03-18 19:50:49 +02:00
parent 7a273fabd5
commit df5a762b47

View File

@ -9,8 +9,8 @@ remote="https://boop.icu"
sound="$HOME/Projects/local-bin/sounds/success.ogg"
# Make sure necessary applications are installed
if [[ ! -n "$(which xsel)" ]]; then; echo "Please install xsel"; exit; fi
if [[ ! -n "$(which curl)" ]]; then; echo "Please install curl"; exit; fi
if [[ ! -n "$(which xsel)" ]]; then echo "Please install xsel"; exit; fi
if [[ ! -n "$(which curl)" ]]; then echo "Please install curl"; exit; fi
url=$(curl -F"file=@$1" $remote)
echo "$url" | tr -d '\n' | xsel -ib -l /tmp/xsel.log