The flags of a WLAN need to be quoted (they contain things like brackets)

This commit is contained in:
dteske 2016-12-13 02:54:44 +00:00
parent d208501dc8
commit 7665f7ac67

View File

@ -208,7 +208,7 @@ while :; do
f_eval_catch -dk SCAN_RESULTS wlanconfig wpa_cli "wpa_cli scan_results"
NETWORKS=$( echo "$SCAN_RESULTS" | awk -F '\t' '
/..:..:..:..:..:../ && $5 { printf "\"%s\"\t%s\n", $5, $4 }
/..:..:..:..:..:../ && $5 { printf "\"%s\"\t\"%s\"\n", $5, $4 }
' | sort | uniq )
if [ ! "$NETWORKS" ]; then