-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathiterm2-zmodem-send
More file actions
executable file
·37 lines (34 loc) · 1.43 KB
/
iterm2-zmodem-send
File metadata and controls
executable file
·37 lines (34 loc) · 1.43 KB
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
#!/usr/bin/env bash
# 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
# /usr/local/bin/sz "$FILE" --escape --binary --bufsize 4096 2>&1
# sleep 1
# echo
# echo \# Received "$FILE"
# fi
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)&\"\")")
if [[ -z "$FILE" ]]; then
echo " Cancelled"
# Send ZModem cancel
echo -e \\x18\\x18\\x18\\x18\\x18
sleep 1
echo
echo " # Cancelled transfer"
else
"${HOMEBREW_PREFIX:-/usr/local}/bin/sz" "$FILE" -e -b
sleep 1
echo
echo " # Received $FILE"
fi