mirror of
https://github.com/lora-aprs/LoRa_APRS_iGate.git
synced 2025-12-06 07:42:00 +01:00
6 lines
96 B
Python
6 lines
96 B
Python
import subprocess
|
|
|
|
|
|
def runProcess(cmd):
|
|
subprocess.run(cmd, shell=True).check_returncode()
|