mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2025-11-12 16:26:12 +01:00
6 lines
221 B
Python
6 lines
221 B
Python
import subprocess
|
|
subprocess.run(self.command, capture_output=self.capture_output, text=True, shell=self.shell)
|
|
if subprocess.run('uname -a', check=True, shell=True).find('arch64') ==-1:
|
|
pass
|
|
else:
|
|
print('arch64') |