ajhsu / blog

The external storage of my brain.
3 stars 0 forks source link

Restart the Wi-Fi connection of macOS via command #28

Open ajhsu opened 7 years ago

ajhsu commented 7 years ago

Turn off the Wi-Fi connection

$ sudo ifconfig en0 down

Then turn on the Wi-Fi connection

$ sudo ifconfig en0 up

So you could combine them into:

$ sudo ifconfig en0 down; sudo ifconfig en0 up;