11 lines
189 B
Plaintext
Raw Normal View History

2021-03-13 18:34:45 +03:00
#!/bin/sh
if [ "$1" = "-e" ]; then
curl https://unshorten.me/s/"${2:--}"
2021-03-13 18:34:45 +03:00
elif [ "$1" = "-s" ]; then
curl -F"shorten=${2:--}" https://0x0.st
2021-03-13 18:34:45 +03:00
else
echo "Wrong arguments"
return 1
fi