mirror of
https://github.com/lora-aprs/LoRa_APRS_iGate.git
synced 2026-01-19 15:10:16 +01:00
6 lines
96 B
Python
6 lines
96 B
Python
|
|
import subprocess
|
||
|
|
|
||
|
|
|
||
|
|
def runProcess(cmd):
|
||
|
|
subprocess.run(cmd, shell=True).check_returncode()
|