forked from robberphex/iTerm2-zmodem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathiterm2-send-zmodem.sh
executable file
·39 lines (36 loc) · 1.47 KB
/
iterm2-send-zmodem.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/bin/bash
# Author: Matt Mastracci ([email protected])
# AppleScript from http://stackoverflow.com/questions/4309087/cancel-button-on-osascript-in-a-bash-script
# licensed under cc-wiki with attribution required
# Remainder of script public domain
EXPECTED_SZPATHS=( /usr/local/bin/sz /opt/homebrew/bin/sz `which sz`)
SZ_BINARY="N/A"
for path in ${EXPECTED_SZPATHS[@]}; do
if [[ -x $path ]]; then
SZ_BINARY=$path
break
fi
done
if [[ "$SZ_BINARY" == "N/A" ]]; then
echo "Is 'sz' installed? It was not found in any ot the expected locations: $EXPECTED_SZPATHS. Run 'brew install lrzsz'?"
exit 1
fi
osascript -e 'tell application "iTerm2" to version' > /dev/null 2>&1 && NAME=iTerm2 || NAME=iTerm
if [[ $NAME = "iTerm" ]]; then
FILE=$(osascript -e 'tell application "iTerm" to activate' -e 'tell application "iTerm" to set thefile to choose file with prompt "Choose a file to send"' -e "do shell script (\"echo \"&(quoted form of POSIX path of thefile as Unicode text)&\"\")")
else
FILE=$(osascript -e 'tell application "iTerm2" to activate' -e 'tell application "iTerm2" to set thefile to choose file with prompt "Choose a file to send"' -e "do shell script (\"echo \"&(quoted form of POSIX path of thefile as Unicode text)&\"\")")
fi
if [[ $FILE = "" ]]; then
echo Cancelled.
# Send ZModem cancel
echo -e \\x18\\x18\\x18\\x18\\x18
sleep 1
echo
echo \# Cancelled transfer
else
$SZ_BINARY "$FILE" --escape --binary --bufsize 4096
sleep 1
echo
echo \# Received "$FILE"
fi