How to set system-wide proxy address using shell script?
- by skg
I want to set system Proxy address through my Qt application. So i was wondering if i could write a script which can be executed by my application every time to change the proxy address.
I tried :
#! /bin/sh
echo "# Generated by Application"
export $1
echo "Proxy Address ${1}
but this script was not successful. I think it was unable to execute "export" command.
Can anyone help me resolving this issue ?