You don't need parentheses for awk's printf

This commit is contained in:
dteske 2016-12-13 02:07:12 +00:00
parent 4442ea7869
commit 071e4a0235

View File

@ -226,7 +226,7 @@ while :; do
SCAN_RESULTS=$( 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