forked from damncabbage/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsshrc
executable file
·44 lines (43 loc) · 1.38 KB
/
sshrc
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
#!/usr/bin/env bash
#
# From https://github.com/Russell91/sshrc/
#
set -e
function sshrc() {
local SSHHOME=${SSHHOME:=~}
if [ -f $SSHHOME/.sshrc ]; then
local files=.sshrc
if [ -d $SSHHOME/.sshrc.d ]; then
files="$files .sshrc.d"
fi
ssh -t ${*:1} "
export SSHHOME="'$(mktemp -d)'"
echo $'"$(cat `which sshrc` | xxd -ps)"' | xxd -ps -r > "'$SSHHOME/sshrc'"
chmod +x "'$SSHHOME/sshrc'"
echo $'"$( cat << 'EOF' | xxd -ps
#!/usr/bin/env bash
bash --rcfile <(echo '
if [ -e /etc/bash.bashrc ]; then source /etc/bash.bashrc; fi
if [ -e ~/.bashrc ]; then source ~/.bashrc; fi
source '$SSHHOME'/.sshrc;
export PATH=$PATH:'$SSHHOME'
')
EOF
)"' | xxd -ps -r > "'$SSHHOME/bashsshrc'"
chmod +x "'$SSHHOME/bashsshrc'"
export SSHRCCLEANUP="'$SSHHOME'"
echo $'"$(tar cz -h -C $SSHHOME $files | xxd -ps)"' | xxd -ps -r | tar mxz -C "'$SSHHOME'"
export SSHHOME="'$SSHHOME'"
#bash --rcfile <(echo 'if [ -e /etc/bash.bashrc ]; then source /etc/bash.bashrc; fi; if [ -e ~/.bashrc ]; then source ~/.bashrc; fi; source "'$SSHHOME'"/.sshrc; export PATH="'$PATH'":"'$SSHHOME'"')
"'$SSHHOME'"/bashsshrc
rm -rf "'$SSHRCCLEANUP'"
"
else
echo "No such file: $SSHHOME/.sshrc"
fi
}
if [ $1 ]; then
sshrc $@
else
ssh
fi