#!/bin/sh
LIBCSOCKS=/usr/local/lib/libcsocks.0.dylib
if [ -z "$LD_PRELOAD" ]
then
DYLD_INSERT_LIBRARIES=$LIBCSOCKS DYLD_FORCE_FLAT_NAMESPACE=1 exec "$@"
fi
if [ $# = 0 ]
then
${SHELL:-/bin/sh}
fi
if [ $# -gt 0 ]
then
exec "$@"
fi