Files
svr/usr/bin/conn
T
journal_froid 970b2ba191 modified: alpine-qemu-install
modified:   conn
new file:   greplast
modified:   nmap_sA
2026-01-23 09:50:44 +01:00

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