mirror of
https://github.com/olexsmir/dotfiles.git
synced 2026-01-15 16:51:34 +02:00
5 lines
106 B
Bash
Executable file
5 lines
106 B
Bash
Executable file
#!/bin/sh
|
|
cat /proc/net/wireless \
|
|
| grep "wlp3s0" \
|
|
| awk '{print $4}' \
|
|
| grep -o '[0-9]*'
|