Files
w3m/which
2001-11-08 05:14:08 +00:00

12 lines
160 B
Bash
Executable File

#!/bin/sh
arg=$1
for d in `echo $PATH | sed -e 's/:/ /g'`
do
if [ -x $d/$arg ]; then
echo $d/$arg
exit 0
fi
done
echo "${arg}: Command not found."
exit 1