970b2ba191
modified: conn new file: greplast modified: nmap_sA
19 lines
258 B
Bash
Executable File
19 lines
258 B
Bash
Executable File
#!/usr/bin/bash
|
|
|
|
iwctl station wlan0 scan
|
|
if [ "$#" -lt 1 ] ; then
|
|
iwctl station wlan0 get-networks
|
|
echo
|
|
echo
|
|
echo "Usage: $0 USSID"
|
|
exit 1
|
|
fi
|
|
|
|
iwctl station wlan0 scan
|
|
iwctl station wlan0 get-networks
|
|
echo
|
|
iwctl station wlan0 connect $1
|
|
|
|
exit 0
|
|
|