60 lines
1.4 KiB
Bash
Executable File
60 lines
1.4 KiB
Bash
Executable File
#!/bin/sh
|
||
# .. vim: foldmarker=[[[,]]]:foldmethod=marker
|
||
|
||
# This script will try to:
|
||
## Get first argument
|
||
## Or get clipboard content if no argument
|
||
## Send this data to an URL shortener
|
||
## Print the short url to stdout
|
||
## Or put it in the clipboard if no argument was given
|
||
|
||
# Vars [[[
|
||
debug="0"
|
||
flag_clipboard=false
|
||
flag_inline=false
|
||
|
||
null_service_url="https://null.101010.fr"
|
||
|
||
## Colors [[[
|
||
c_redb='\033[1;31m'
|
||
c_magentab='\033[1;35m'
|
||
c_reset='\033[0m'
|
||
## ]]]
|
||
|
||
# ]]]
|
||
|
||
# Verify argument [[[
|
||
case "$#" in
|
||
0 )
|
||
flag_clipboard=true
|
||
[ "${debug}" -eq "0" ] && printf "${c_magentab}%-6b${c_reset}\n" "DEBUG − Verify arg : No argument was given, try to use clipboard."
|
||
;;
|
||
1 )
|
||
flag_inline=true
|
||
[ "${debug}" -eq "0" ] && printf "${c_magentab}%-6b${c_reset}\n" "DEBUG − Verify arg : One argument was given, use it."
|
||
;;
|
||
* )
|
||
printf "${c_redb}%b${c_reset}\n" "Error : Expect one argument or a content in clipboard."
|
||
exit 1
|
||
;;
|
||
esac
|
||
# ]]]
|
||
|
||
# Get URL to be shortened [[[
|
||
# Try to get URL from first argument
|
||
if [ "${flag_inline}" = "true" ]; then
|
||
url_to_short="${1}"
|
||
fi
|
||
# Try to get URL from clipboard
|
||
if [ "${flag_clipboard}" = "true" ]; then
|
||
url_to_short=$(xclip -out)
|
||
fi
|
||
|
||
[ "${debug}" -eq "0" ] && printf "${c_magentab}%-6b${c_reset}\n" "DEBUG − Get URL : URL to be shortened : ${url_to_short}"
|
||
# ]]]
|
||
|
||
# shorten URL
|
||
result=$(curl -sF"shorten=${url_to_short}" "${null_service_url}")
|
||
|
||
exit 0
|