From 56b235cd3f4849814b62b7978a11ee821413e69e Mon Sep 17 00:00:00 2001 From: DustVoice Date: Tue, 13 Sep 2022 11:17:15 +0200 Subject: [PATCH] Add archserver-proxy.fish to ssh into archserver from work --- .config/fish/functions/archserver-proxy.fish | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .config/fish/functions/archserver-proxy.fish diff --git a/.config/fish/functions/archserver-proxy.fish b/.config/fish/functions/archserver-proxy.fish new file mode 100644 index 0000000..2f75dde --- /dev/null +++ b/.config/fish/functions/archserver-proxy.fish @@ -0,0 +1,3 @@ +function archserver-proxy --description 'Connect to archserver through ldiproxy' + ssh archserver -o "ProxyCommand=nc -X connect -x ldiproxy.lsjv.rlp.de:8080 %h %p"; +end