repo.or.cz
/
hondza-y36pr2.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Initial commit.
[hondza-y36pr2.git]
/
fadvise
/
fadvise_test
blob
311d5d293d2ca4e390bbbe9c20c2cb1774df6bd9
1
#!/bin/mksh
2
3
if [ $# = 0 ] ; then
4
echo " usage:"
5
echo " fadvise <prog> [args]"
6
exit
7
fi
8
9
LD_PRELOAD="${LD_PRELOAD} ./libfadvise.so"
10
export LD_PRELOAD
11
exec "$@"
12