Skip to content

Instantly share code, notes, and snippets.

@blpabhishek
Created February 16, 2018 11:15
Show Gist options
  • Save blpabhishek/e7eac2279a7b0546cd464b01d8fa974b to your computer and use it in GitHub Desktop.
Save blpabhishek/e7eac2279a7b0546cd464b01d8fa974b to your computer and use it in GitHub Desktop.
Switch off the network in every three hour
#Switch off the network in every three hour
while [ 1 -lt 2 ]
do
networksetup -setairportpower en0 off;
sleep 3h;
done
#:)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment