diff options
| author | Akinori Ito <aito@eie.yz.yamagata-u.ac.jp> | 2001-11-08 05:14:08 +0000 | 
|---|---|---|
| committer | Akinori Ito <aito@eie.yz.yamagata-u.ac.jp> | 2001-11-08 05:14:08 +0000 | 
| commit | 68a07bf03b7624c9924065cce9ffa45497225834 (patch) | |
| tree | c2adb06a909a8594445e4a3f8587c4bad46e3ecd /which | |
| download | w3m-68a07bf03b7624c9924065cce9ffa45497225834.tar.gz w3m-68a07bf03b7624c9924065cce9ffa45497225834.zip | |
Initial revision
Diffstat (limited to '')
| -rwxr-xr-x | which | 11 | 
1 files changed, 11 insertions, 0 deletions
| @@ -0,0 +1,11 @@ +#!/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 | 
