I'm able to get the signal strength of all Wi-Fi networks with the following command:
$ nmcli -t -f SIGNAL device wifi list
$ 77
67
60
59
55
45
44
39
39
37
I would like to reduce this list only to the current Wi-Fi on which I'm connected. I've been through the man page but can't find the necessary flag.
One solution would be to use sed or awk, but I would like to avoid piping.
Should I use nmcli device wifi instead of parsing directly for the SIGNAL column?