# Python TTY
python3 -c "import pty;pty.spawn('/bin/bash')"
// Get a shell with tab completion and arrow keys.
www-data@teacher:/var/www/html/moodle$ ^Z
[1]+ Stopped nc -lvnp 4444
$ stty raw -echo
$ fg
$ reset
Terminal type? screen
www-data@teacher:/var/www/html/moodle$ export TERM=xterm
This works, but the shell is not colorful, how can I change this to get a colorful shell?