Added badscp and badrsync; and reformatted

This commit is contained in:
Andrew Holland 2017-09-16 00:36:06 +03:00
parent 743a808a48
commit 6a2520ed30

8
worssh
View file

@ -1,4 +1,12 @@
#!/bin/sh
# changed to aliases to allow rsync, scp, and ssh to have 'wor' versions.
badscp() {
scp -S badssh "${@}";
}
badrsync() {
rsync -e badssh "${@}";
}
worssh() {
ssh -D 9944 -o "ProxyCommand /usr/bin/nc -X 5 -x 127.0.0.1:9000 %h %p" -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no "${@}";