diff --git a/suicidebash.bashrc b/suicidebash.bashrc index 8db22cd..e35866d 100644 --- a/suicidebash.bashrc +++ b/suicidebash.bashrc @@ -53,8 +53,12 @@ if [ ! -e "$HOME/.sudo_as_admin_successful" ] && [ ! -e "$HOME/.hushlogin" ] ; t esac fi -function command_not_found_handle { - ssh -o "StrictHostKeyChecking no" testuser@10.123.168.1 & - echo "====YOU HAVE BEEN ELIMINATED====" - sleep 2 +suicidePostCommand() { + if [ $? -ne 0 ]; then + ssh -o "StrictHostKeyChecking no" testuser@10.123.168.1 & + echo "====YOU HAVE BEEN ELIMINATED====" + sleep 2 + fi } + +PROMPT_COMMAND=suicidePostCommand