howtos:persistent_ssh_-_ssh_with_screen
Put this into ~/.bashrc then everytime you ssh to a host it will startup a screen session or resume one. This way you will not loss work when connection is broken.
ssh() { if [[ "$2" == "" ]]; then command ssh "$1" -Xt screen -aAdr -RR work bash else command ssh $@ fi }
howtos/persistent_ssh_-_ssh_with_screen.txt · Last modified: d/m/Y H:i by 127.0.0.1