7 lines
108 B
Plaintext
7 lines
108 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
for dir in /var/run/hostapd-*; do
|
||
|
[ -d "$dir" ] || continue
|
||
|
hostapd_cli -p "$dir" wps_pbc
|
||
|
done
|