python3
使用subprocess.run()
import subprocess
res=subprocess.run(‘ls -la /opt’,shell=True,check=True,capture_output=True)
print(res.returncode)
print(res.stdout.decode(‘utf-8’))
print(res.stderr.decode(‘utf-8’))
python3
使用subprocess.run()
import subprocess
res=subprocess.run(‘ls -la /opt’,shell=True,check=True,capture_output=True)
print(res.returncode)
print(res.stdout.decode(‘utf-8’))
print(res.stderr.decode(‘utf-8’))