termux-packages/packages/electric-fence/ef.sh

10 lines
339 B
Bash
Raw Normal View History

2020-07-21 05:33:53 +02:00
#!/data/data/com.termux/files/usr/bin/sh
#edited from https://aur.archlinux.org/cgit/aur.git/tree/ef.sh?h=electricfence
if [ "$1" = "" ]; then
echo "$0: Usage: ef [executable] [arguments]."
echo " Runs the executable under the Electric Fence malloc debugger."
exit
fi
LD_PRELOAD="libefence.so.0.0${LD_PRELOAD:+:$LD_PRELOAD}" exec "$@"