X-Git-Url: https://code.delx.au/osx-proxyconf/blobdiff_plain/b2c75bd0e073132363897eb2374a50ef5e149733..00753391a2870d115009501ce763a6cf5b75341e:/proxyconf.sh diff --git a/proxyconf.sh b/proxyconf.sh index 61b0f50..78b537c 100755 --- a/proxyconf.sh +++ b/proxyconf.sh @@ -1,17 +1,17 @@ #!/bin/bash -if [ "$(sysconfig -n "HTTPEnable")" -eq 1 ]; then - host="$(sysconfig -s "HTTPProxy")" - port="$(sysconfig -n "HTTPPort")" +if [ "$(sysconfig "HTTPEnable")" -eq 1 ]; then + host="$(sysconfig "HTTPProxy")" + port="$(sysconfig "HTTPPort")" echo "export http_proxy=\"http://${host}:${port}\"" fi -if [ "$(sysconfig -n "HTTPSEnable")" -eq 1 ]; then - host="$(sysconfig -s "HTTPSProxy")" - port="$(sysconfig -n "HTTPSPort")" +if [ "$(sysconfig "HTTPSEnable")" -eq 1 ]; then + host="$(sysconfig "HTTPSProxy")" + port="$(sysconfig "HTTPSPort")" echo "export https_proxy=\"http://${host}:${port}\"" fi -if [ "$(sysconfig -n "FTPEnable")" -eq 1 ]; then - host="$(sysconfig -s "FTPProxy")" - port="$(sysconfig -n "FTPPort")" +if [ "$(sysconfig "FTPEnable")" -eq 1 ]; then + host="$(sysconfig "FTPProxy")" + port="$(sysconfig "FTPPort")" echo "export ftp_proxy=\"http://${host}:${port}\"" fi