-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathremote.sh
executable file
·88 lines (79 loc) · 2.16 KB
/
remote.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#!/bin/bash
usage=$(cat <<END
$0 remote-address [options...]
Run a shell script at remote address.
-h,--help Display help.
-f,--file filename Shell script filename.
-o,--options options Options for shell script.
-e,--environment environment_string Environment for shell script.
-p,--sudo Ask for sudo permissions.
END
)
getopt --test > /dev/null
if [[ $? -ne 4 ]]; then
echo "I’m sorry, `getopt --test` failed in this environment."
exit 1
fi
SHORT=hpf:a:e:
LONG=help,sudo,file:,options:,environment:
# -temporarily store output to be able to check for errors
# -activate advanced mode getopt quoting e.g. via “--options”
# -pass arguments only via -- "$@" to separate them correctly
PARSED=$(getopt --options $SHORT --longoptions $LONG --name "$0" -- "$@")
if [[ $? -ne 0 ]]; then
# e.g. $? == 1
# then getopt has complained about wrong arguments to stdout
echo "Bad arguments"
exit 2
fi
# use eval with "$PARSED" to properly handle the quoting
eval set -- "$PARSED"
#echo $f
# now enjoy the options in order and nicely split until we see --
while true; do
case "$1" in
-e|--environment)
e=$2
shift 2
;;
-p|--sudo)
p=1
shift
;;
-f|--file)
f=$2
shift 2
;;
-a|--options)
a=$2
shift 2
;;
-h|--help)
echo "$usage"
exit 0
;;
--)
shift
break
;;
*)
echo "Programming error"
exit 3
;;
esac
done
# handle non-option arguments
if [ $# -lt 1 ]; then
echo "$0: A remote host is required."
exit 4
fi
while [ $# -gt 0 ]; do
echo "$1:$([ "${p:-0}" -eq 1 ] && echo " sudo") $f $a $e"
COMMAND=$(base64 -w0 $f)
if [ "${p:-0}" -eq 1 ]; then
stty -echo; ssh -t $1 "(export $e > /dev/null; echo $COMMAND | base64 -d | sudo -E bash -s \"$a\")"
else
ssh $1 "(export $e > /dev/null; echo $COMMAND | base64 -d | bash -s \"$a\")"
fi
shift
done