Last active
June 20, 2018 14:38
-
-
Save wadewegner/57b366eac6a9d28adf409ec8d068e378 to your computer and use it in GitHub Desktop.
Scripts to assist in fixing issues with OSX networking
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Usage: na | |
# Expected output: en0 | |
alias na="ifconfig | pcregrep -M -o '^[^\t:]+:([^\n]|\n\t)*status: active' | egrep -o -m 1 '^[^\t:]+'" | |
# Usage: nr en0 | |
nr() { | |
sudo ifconfig $1 down;sleep 10;sudo ifconfig $1 up | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment