Skip to content

Instantly share code, notes, and snippets.

@chmeee
Forked from anonymous/list_wifis
Last active August 29, 2015 14:27
Show Gist options
  • Save chmeee/d6440beb6921c5cbcc16 to your computer and use it in GitHub Desktop.
Save chmeee/d6440beb6921c5cbcc16 to your computer and use it in GitHub Desktop.
One liner to list ESSID and Qualiity of Wi-Fi networks out of iwlist
tabs -40; sudo iwlist wlp3s0 scan | egrep "ESSID|Qual" | tac | sed -n 's/^\s*//g;N;s/\n/\t/;p' | sort -r -t= -k2; tabs -4
@chmeee
Copy link
Author

chmeee commented Aug 17, 2015

Ordered by quality of signal :D

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment