From 2e11398af9a2a6dd2b7df4cb1cd285f3beb9174a Mon Sep 17 00:00:00 2001 From: Don Harper Date: Thu, 29 May 2025 23:12:23 -0500 Subject: [PATCH] bash | removed last(?) call to .bash_ssh --- home/common/files/bash/bash_functions | 12 ++++++------ home/common/files/bash/bash_local | 3 ++- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/home/common/files/bash/bash_functions b/home/common/files/bash/bash_functions index 7569e41..966736b 100755 --- a/home/common/files/bash/bash_functions +++ b/home/common/files/bash/bash_functions @@ -18,38 +18,38 @@ # REVISION: --- #=============================================================================== +# Switched to use tailscale ssh, so removed call to ~/.bash_ssh function nssh () { - . ~/.bash_ssh ssh-keygen -R "${1}" ssh "${@}" } function ss () { - tmux neww -n "${1}" ". ~/.bash_ssh ; ssh ${*}" + tmux neww -n "${1}" "ssh ${*}" } function mss () { - tmux neww -n "${1}" ". ~/.bash_ssh ; mosh ${*}" + tmux neww -n "${1}" "mosh ${*}" } function nss () { ssh-keygen -R "${1}" - tmux neww -n "${1}" ". ~/.bash_ssh ; ssh ${*}" + tmux neww -n "${1}" "ssh ${*}" } function pss () { - tmux split-window -h ". ~/.bash_ssh ; ssh ${*}" + tmux split-window -h "ssh ${*}" } function pnss () { ssh-keygen -R "${1}" - tmux split-window -h ". ~/.bash_ssh ; ssh ${*}" + tmux split-window -h "ssh ${*}" } function yay () diff --git a/home/common/files/bash/bash_local b/home/common/files/bash/bash_local index 8c8c107..1a3e68b 100644 --- a/home/common/files/bash/bash_local +++ b/home/common/files/bash/bash_local @@ -1,4 +1,5 @@ -. ~/.bash_ssh +# Switched to use tailscale ssh, so removed call to ~/.bash_ssh +# . ~/.bash_ssh #export TZ=America/Chicago if [[ "$(tty)" = "/dev/tty1" ]] then