Skip to content
Snippets Groups Projects
README.md 385 B
Newer Older
#!/usr/bin/env bash
James Long's avatar
James Long committed
# ncsa_pac_files
#
#On macOS, this can be easily loaded/reloaded with a script like this:
James Long's avatar
James Long committed

James Long's avatar
James Long committed
set -x  # echo on
PROXY_FILE_URL="https://git.ncsa.illinois.edu/rundall/ncsa_pac_files/-/raw/master/ncsa_http_proxy.pac"
networksetup -setautoproxystate Wi-Fi off
networksetup -setautoproxyurl Wi-Fi "$PROXY_FILE_URL"
networksetup -getautoproxyurl Wi-Fi
set +x  # echo off
James Long's avatar
James Long committed