mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2025-11-10 23:36:11 +01:00
6 lines
198 B
Python
6 lines
198 B
Python
import subprocess, shlex
|
|
command = 'yum list | grep lsphp | xargs -n3 | column -t'
|
|
result = subprocess.check_output(command, shell=True).splitlines()
|
|
for item in result:
|
|
print(item.split(b' '))
|