From c8bfdc15e6144be2abb75575c30ce5f2eedefc5c Mon Sep 17 00:00:00 2001 From: rofl0r Date: Sun, 6 Jan 2013 19:12:15 +0100 Subject: [PATCH] remove old proxychains launcher script --- src/proxychains | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100755 src/proxychains diff --git a/src/proxychains b/src/proxychains deleted file mode 100755 index 1c47b97..000000000 --- a/src/proxychains +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/sh -echo "ProxyChains-3.1 (http://proxychains.sf.net)" - -usage() { - - echo " usage:" - echo " $0 [h] [f config-file] [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 "$@"