X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Fcustomize%2Ffred%2Fscripts%2Fssh.sh;fp=scripts%2Fcustomize%2Ffred%2Fscripts%2Fssh.sh;h=0000000000000000000000000000000000000000;hb=b4b11bb8121b10d0e645d1b12b7b22b38faa9c3b;hp=0c7897c43b2c549d8676c3cc825b43d118f53a04;hpb=4b55659ba1a25adb598f03b13b10965336186e83;p=feisty_meow.git diff --git a/scripts/customize/fred/scripts/ssh.sh b/scripts/customize/fred/scripts/ssh.sh deleted file mode 100644 index 0c7897c4..00000000 --- a/scripts/customize/fred/scripts/ssh.sh +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/bash - -# wraps calling the secure shell to let us pick our appropriate credentials. - -source "$FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh" -source "$FEISTY_MEOW_SCRIPTS/tty/terminal_titler.sh" - -#hmmm: is this still used??? -# it seems redundant with the ssh config file that says which creds to use. -source "$FEISTY_MEOW_LOADING_DOCK/custom/scripts/pick_credentials.sh" - -# remember the old title. -save_terminal_title - -# force the TERM variable to a more generic version for other side. -# we don't want the remote side still thinking it's running xterm. -export TERM=linux - -#hmmm: it would be good to set an interrupt handler here and -# trap ctrl-c, since otherwise we are getting exited from and losing a chance -# to reset the terminal title. this actually happens a lot, since some X11 -# or other background process is left running and the ssh never actually quits, -# forcing one to hit ctrl-c. - -if [ ! -z "$keyfile" ]; then - \ssh -i "$keyfile" -X -C $* -else - \ssh -X -C $* -fi - -restore_terminal_title -