We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
from pi-imager
#ifdef Q_OS_WIN program = "netsh"; args << "wlan" << "show" << "interfaces"; regexpstr = "[ \t]+SSID[ \t]*: (.+)"; #else #ifdef Q_OS_DARWIN program = "/System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources/airport"; args << "-I"; regexpstr = "[ \t]+SSID: (.+)"; #else program = "iwgetid"; args << "-r"; #endif
OSX: /System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources/airport -I |fgrep " SSID:"
The text was updated successfully, but these errors were encountered:
this is likely implemented- however, it needs a test (a pytest)
Sorry, something went wrong.
we believe this is implemented, test
I thought we implemented this, would be good to have a pytest so we do not have to burn to test it
jpfleischer
No branches or pull requests
from pi-imager
#ifdef Q_OS_WIN
program = "netsh";
args << "wlan" << "show" << "interfaces";
regexpstr = "[ \t]+SSID[ \t]*: (.+)";
#else
#ifdef Q_OS_DARWIN
program = "/System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources/airport";
args << "-I";
regexpstr = "[ \t]+SSID: (.+)";
#else
program = "iwgetid";
args << "-r";
#endif
OSX: /System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources/airport -I |fgrep " SSID:"
The text was updated successfully, but these errors were encountered: