Initial commit

This commit is contained in:
Roi Martin (@nibble_ds)
2014-02-06 10:54:27 +01:00
commit f5f4910592
9 changed files with 905 additions and 0 deletions

9
whereis Executable file
View File

@ -0,0 +1,9 @@
#!/bin/sh
[ -z "$1" ] && exit 1
IFS=:
for a in $PATH ; do
if [ -e "$a/$1" ]; then
echo "$a/$1"
break
fi
done