Update TTY shell command for python

Made the command to use python3 because mostly now the machines have python3 installed.
patch-1
Mehtab Zafar 2020-01-10 17:57:53 +05:30 committed by GitHub
parent 7ab6750655
commit 8dc1e3c5fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -343,7 +343,7 @@ Spawn a TTY shell from an interpreter
```powershell
/bin/sh -i
python -c 'import pty; pty.spawn("/bin/sh")'
python3 -c 'import pty; pty.spawn("/bin/sh")'
perl -e 'exec "/bin/sh";'
perl: exec "/bin/sh";
ruby: exec "/bin/sh"