remove gnu autocrap

This commit is contained in:
rofl0r
2011-09-02 20:32:04 +02:00
parent 7cde272e29
commit 86be015f0d
27 changed files with 0 additions and 41842 deletions

26
src/proxychains Executable file
View File

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