mirror of
https://github.com/kou029w/megabit-os.git
synced 2025-01-19 08:17:59 +00:00
10 lines
260 B
Text
10 lines
260 B
Text
|
#!/bin/bash
|
||
|
# wpa_supplicant.conf の生成
|
||
|
# Usage: bin/conf-gen
|
||
|
# Required: wpa_supplicant grep
|
||
|
set -euo pipefail
|
||
|
read -p 'Please enter ssid: ' ssid
|
||
|
read -p 'Please enter passphrase: ' -s passphrase
|
||
|
wpa_passphrase "$ssid" "$passphrase" \
|
||
|
| grep -v '#psk='
|