update iw listing

This commit is contained in:
Tobias Powalowski 2024-06-27 15:13:03 +02:00
parent 1b264412e4
commit f697c220b7

View file

@ -40,7 +40,8 @@ _essid_list() {
# only show lines with signal '*' # only show lines with signal '*'
# kill spaces from the end and replace spaces with + between # kill spaces from the end and replace spaces with + between
# '+' character is one of 6 forbidden characters in SSID standard # '+' character is one of 6 forbidden characters in SSID standard
for dev in $(iwctl station "${_INTERFACE}" get-networks | rg -o ' {6}(.{34}).*\*' -r '$1' | sd ' *$' ''); do _ESSID+="$(iwctl station "${_INTERFACE}" get-networks | rg -o ' {6}(.{34}).*\*' -r '"$1' | sd ' *\n$' '"')"
for dev in ${_ESSID[@]}; do
echo "\"${dev}\"" echo "\"${dev}\""
[[ "${1}" ]] && echo "${1}" [[ "${1}" ]] && echo "${1}"
done done