aboutsummaryrefslogtreecommitdiffstats
path: root/which
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2003-03-10 18:07:20 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2003-03-10 18:07:20 +0000
commitac34c0690da6fe2f6d523430a5ce40081717b06a (patch)
tree5d690c53cf7a35780e620181d309f038ce24dbfe /which
parentfix indent (diff)
downloadw3m-ac34c0690da6fe2f6d523430a5ce40081717b06a.tar.gz
w3m-ac34c0690da6fe2f6d523430a5ce40081717b06a.zip
* which: deleted
* makeallmomdel: deleted From: Fumitoshi UKAI <ukai@debian.or.jp>
Diffstat (limited to '')
-rwxr-xr-xwhich11
1 files changed, 0 insertions, 11 deletions
diff --git a/which b/which
deleted file mode 100755
index 473c891..0000000
--- a/which
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/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