Full TTYs

#1

python3 -c 'import pty; pty.spawn("/bin/bash")'
stty raw -echo; fg
export SHELL=/bin/bash; export TERM=screen; stty rows 43 columns 185; reset;

#2

script /dev/null -qc /bin/bash
stty raw -echo; fg
export SHELL=/bin/bash; export TERM=screen; stty rows 43 columns 185; reset;