13 lines
292 B
Plaintext
13 lines
292 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
if [ -e /usr/sbin/tinyproxy ]; then
|
||
|
echo "Found tinyproxy at /usr/sbin/tinyproxy"
|
||
|
/usr/sbin/tinyproxy "$@"
|
||
|
elif [ -e /usr/bin/tinyproxy ]; then
|
||
|
echo "Found tinyproxy at /usr/bin/tinyproxy"
|
||
|
/usr/bin/tinyproxy "$@"
|
||
|
else
|
||
|
echo "tinyproxy not found"
|
||
|
exit 1
|
||
|
fi
|