Upgrading Shells

Native Linux Method

script /dev/null -c bash
Ctrl-z
stty raw -echo; fg
reset
screen

Using Python

python3 -c 'import pty; pty.spawn("/bin/bash")'

Last updated