1
2
3
4
5
6
7
8
9
10
11
12
|
CD=~/Library/tm/Support/bin/CocoaDialog.app/Contents/MacOS/CocoaDialog
if [[ $# == 1 ]]; then
{ scp "$1" mm:mm/images/pasted
URL=http://macromates.com/images/pasted/$(basename "$1")
echo -n "$URL"|pbcopy
echo -n "$URL"; } 2> >("$CD" progressbar --indeterminate --title "Uploading File" --text "Uploading file to server “macromates.com”…")
fi
|