讓樹莓派、香橙派重新進行 Wifi 連線

Bash
#!/bin/bash
 
ifconfig wlan0 down
sleep 10
ifconfig wlan0 up
Bash