You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
345 B
16 lines
345 B
6 years ago
|
# Only compatible with MacOS
|
||
|
[[ "$OSTYPE" == darwin* ]] || return
|
||
|
|
||
|
droplr() {
|
||
|
if [[ $# -eq 0 ]]; then
|
||
|
echo You need to specify a parameter. >&2
|
||
|
return 1
|
||
|
fi
|
||
|
|
||
|
if [[ "$1" =~ ^https?:// ]]; then
|
||
|
osascript -e 'tell app "Droplr" to shorten "'"$1"'"'
|
||
|
else
|
||
|
open -ga /Applications/Droplr.app "$1"
|
||
|
fi
|
||
|
}
|