fix listing of networks

This commit is contained in:
Tobias Powalowski 2022-12-10 11:08:45 +01:00
parent a43fb0f31a
commit 838bdce922

View file

@ -16,7 +16,7 @@ essid_scan() {
iwctl station "${INTERFACE}" scan
# only show lines with signal '*'
# kill spaces from the end and replace spaces with # between
for dev in $(iwctl station "${INTERFACE}" get-networks | grep '\*' | cut -c 11-44 | sed -e 's#\ $##g' -e 's| |#|g'); do
for dev in $(iwctl station "${INTERFACE}" get-networks | grep '\*' | cut -c 11-44 | sed -e 's#\ $##g' | sed -e 's| |#|g'); do
echo "${dev}"
[[ "${1}" ]] && echo "${1}"
done