Upgrading Shells
Native Linux Method
script /dev/null -c bash
Ctrl-z
stty raw -echo; fg
reset
screenUsing Python
python3 -c 'import pty; pty.spawn("/bin/bash")'Last updated
script /dev/null -c bash
Ctrl-z
stty raw -echo; fg
reset
screenpython3 -c 'import pty; pty.spawn("/bin/bash")'Last updated