↧
CSV from iw output
Intro A long and lingering issue with wireless 802.11 work in a UNIX context is filtering AP scans into a meaningful form such that the important bits (BSSID, ESSID, channel) can be used by shell...
View ArticleCSV from iw output
Here is a simpler function which uses exclusively Bash internals and spawns only one sub-shell: #!/bin/bash function iwScan() { # disable globbing to avoid surprises set -o noglob # make temporary...
View Article