Created
December 16, 2016 02:17
-
-
Save OkashiOdayakana/f050240271d331e6cc324df1b76251d1 to your computer and use it in GitHub Desktop.
This file contains 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/bash | |
if [ -z "$key" ] | |
then | |
echo "Please enter your key" | |
read key | |
fi | |
echo "Please enter the URL you wish to shorten" | |
read url | |
result=$(curl "https://api.whats-th.is/shorten/polr?action=shorten&key=$key&url=$url") | |
echo $result | xclip -i -sel c -f |xclip -i -sel p | |
echo "Copied the link to the keyboard." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment