proxychains-ng/proxychains/proxychains

27 lines
338 B
Plaintext
Raw Normal View History

2011-02-25 09:40:11 +00:00
#!/bin/sh
echo "ProxyChains-3.1 (http://proxychains.sf.net)"
usage() {
2011-02-25 09:40:11 +00:00
echo " usage:"
echo " $0 [h] [f config-file] <prog> [args]"
2011-02-25 09:40:11 +00:00
exit
}
if [ $# = 0 ] ; then
usage
fi
if [ $1 = "-h" ]; then
usage
fi
if [ "$1" = "-f" ]; then
export PROXYCHAINS_CONF_FILE=$2;
shift;
shift;
2011-02-25 09:40:11 +00:00
fi
export LD_PRELOAD=libproxychains.so.3
2011-02-25 09:40:11 +00:00
exec "$@"