mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
9 lines
304 B
Python
9 lines
304 B
Python
import pexpect
|
|
from pexpect import popen_spawn
|
|
|
|
cmd = "ls -la"
|
|
result = pexpect.run(cmd) # $ getCommand=cmd
|
|
result = pexpect.runu(cmd) # $ getCommand=cmd
|
|
result = pexpect.spawn(cmd) # $ getCommand=cmd
|
|
result = pexpect.spawnu(cmd) # $ getCommand=cmd
|
|
result = popen_spawn.PopenSpawn(cmd) # $ getCommand=cmd |