Initial Import

This commit is contained in:
MadCamel
2014-03-08 19:56:21 -05:00
parent 0b366093a7
commit aba69cb20f
221 changed files with 35407 additions and 4 deletions

14
config/which Executable file
View File

@@ -0,0 +1,14 @@
bin=$1
spath="`echo $PATH | sed 's/:/ /g;'`"
if [ -x $bin ]; then
echo $bin
exit
fi
for pd in $spath; do
if [ -x $pd/$bin ]; then
echo $pd/$bin
exit
fi
done
echo 'not found'