mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
11 lines
180 B
Bash
11 lines
180 B
Bash
|
#! /bin/sh
|
||
|
|
||
|
if [ $# -eq 0 ]; then
|
||
|
echo "Usage: $0 command [arguments]" >&2
|
||
|
exit 2
|
||
|
fi
|
||
|
|
||
|
export M3SOCKS=1
|
||
|
export LD_PRELOAD=/usr/local/lib/m3/FreeBSD2/libm3socks.so
|
||
|
exec "$@"
|