Help for this page

Select Code to Download


  1. or download this
    BSS <blah blah>
       SSID: <ssid>
       <blah blah>
    BSS <and so on>
    
  2. or download this
    my $out = qx| sudo iw dev wlan0 scan |;
    $out .= "\nBSS";
    ...
    my @chunks = $out =~ /^(BSS.*?)(?=^BSS)/smg;
    
    my @essids = map { /SSID: (.*?)$/ms; $1 } @chunks;