Update TTY shell command for python
Made the command to use python3 because mostly now the machines have python3 installed.patch-1
parent
7ab6750655
commit
8dc1e3c5fe
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue