Skip to content

Instantly share code, notes, and snippets.

@SzymonSzott
Created April 19, 2023 10:47
Show Gist options
  • Select an option

  • Save SzymonSzott/a8d85a86f8936af42c15bb8fdc1a79b4 to your computer and use it in GitHub Desktop.

Select an option

Save SzymonSzott/a8d85a86f8936af42c15bb8fdc1a79b4 to your computer and use it in GitHub Desktop.
from os import system
import os, glob
path = "./sys/kernel/debug/ieee80211/"
path += os.listdir(path)[0]+"/" # Add single 'phy' directory
path += glob.glob('*wl*',root_dir=path)[0]+"/stations/" # Add 'netdev\:wl*' directory
path += os.listdir(path)[0]+"/rate_scale_table" # Add single MAC directory
filePath_Intel8260 = path
print(filePath_Intel8260)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment