proxychains-ng/proxychains/proxychains

10 lines
189 B
Plaintext
Raw Permalink Normal View History

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