Skip to content

Latest commit

 

History

History
3 lines (3 loc) · 129 Bytes

交互式shell.md

File metadata and controls

3 lines (3 loc) · 129 Bytes
>python2 -c 'import pty;pty.spawn("/bin/sh")'
>python3 -c "import pty;pty.spawn('/bin/bash')"
>expect -c 'spawn bash;interact'