Destroy session on any non-zero exit code #2

Merged
ben merged 1 commits from tomasino/SLBR:master into master 2019-03-22 15:30:37 +00:00
1 changed files with 8 additions and 4 deletions

View File

@ -53,8 +53,12 @@ if [ ! -e "$HOME/.sudo_as_admin_successful" ] && [ ! -e "$HOME/.hushlogin" ] ; t
esac
fi
function command_not_found_handle {
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
Review

does this need export?

does this need `export`?