5 lines
153 B
Bash
5 lines
153 B
Bash
#!/bin/sh
|
|
|
|
# Run a program with the new shared libraries instead of the installed ones.
|
|
|
|
LD_LIBRARY_PATH=`pwd`/lib DYLD_LIBRARY_PATH=`pwd`/lib exec "$@"
|