8 lines
119 B
Bash
Executable File
8 lines
119 B
Bash
Executable File
#!/bin/sh -x
|
|
|
|
if [ $@ ]; then
|
|
LD_LIBRARY_PATH=../../lib/.libs $@
|
|
else
|
|
echo "[*] Usage: ./run.sh ./<binary>"
|
|
fi
|