Skip to content

Instantly share code, notes, and snippets.

@fionn
Created August 11, 2021 03:48
Show Gist options
  • Save fionn/5fd8169f0b734f1c560283016ba71684 to your computer and use it in GitHub Desktop.
Save fionn/5fd8169f0b734f1c560283016ba71684 to your computer and use it in GitHub Desktop.
#!/bin/bash
if [[ $EUID -ne 0 ]]; then
echo "You must be root"
exit 1
fi
service="Wi-Fi"
while true; do
pkill -9 -P 1 Zscaler && \
networksetup -setautoproxystate $service off
sleep 1
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment