You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Regex to find wireless interfaces, we're making the assumption they will all be wlan0 or higher.
77
77
wlan_pattern=re.compile("^wlan[0-9]+")
78
78
79
-
# Python allows is to run system commands by using a function provided by the subprocess module.
79
+
# Python allows us to run system commands by using a function provided by the subprocess module.
80
80
# subprocess.run(<list of command line arguments goes here>, <specify if you want the capture_output to be True>)
81
81
# We want to capture the output. The output will be in standard UTF-8 and will decode it.
82
82
# The script is the parent process and creates a child process which runs the system command, and will only continue once the child process has completed.
0 commit comments