2000-05-19 11:05:19 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Which implementation for busybox
|
|
|
|
*
|
2004-03-15 13:59:22 +05:30
|
|
|
* Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
|
2006-10-12 03:46:56 +05:30
|
|
|
* Copyright (C) 2006 Gabriel Somlo <somlo at cmu.edu>
|
2000-05-19 11:05:19 +05:30
|
|
|
*
|
2006-09-13 22:09:19 +05:30
|
|
|
* Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
|
2000-05-19 11:05:19 +05:30
|
|
|
*
|
2004-03-01 14:02:49 +05:30
|
|
|
* Based on which from debianutils
|
2000-05-19 11:05:19 +05:30
|
|
|
*/
|
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2006-06-14 21:47:50 +05:30
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int which_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2006-03-07 02:17:33 +05:30
|
|
|
int which_main(int argc, char **argv)
|
2000-05-19 11:05:19 +05:30
|
|
|
{
|
2006-10-12 03:46:56 +05:30
|
|
|
int status = EXIT_SUCCESS;
|
|
|
|
char *p;
|
2000-05-19 11:05:19 +05:30
|
|
|
|
2006-10-06 02:40:53 +05:30
|
|
|
if (argc <= 1 || argv[1][0] == '-') {
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_show_usage();
|
2004-03-01 14:02:49 +05:30
|
|
|
}
|
2003-10-22 16:08:22 +05:30
|
|
|
|
2007-11-25 10:24:13 +05:30
|
|
|
/* This matches what is seen on e.g. ubuntu
|
|
|
|
* "which" there is a shell script */
|
2007-01-28 21:01:19 +05:30
|
|
|
if (!getenv("PATH")) {
|
2007-06-13 04:05:19 +05:30
|
|
|
putenv((char*)bb_PATH_root_path);
|
2007-01-28 21:01:19 +05:30
|
|
|
}
|
|
|
|
|
2006-10-12 03:46:56 +05:30
|
|
|
while (--argc > 0) {
|
2005-09-14 19:38:38 +05:30
|
|
|
argv++;
|
2006-10-12 03:46:56 +05:30
|
|
|
if (strchr(*argv, '/')) {
|
|
|
|
if (execable_file(*argv)) {
|
|
|
|
puts(*argv);
|
|
|
|
continue;
|
2006-10-06 02:40:53 +05:30
|
|
|
}
|
2003-10-22 16:08:22 +05:30
|
|
|
} else {
|
2006-10-12 03:46:56 +05:30
|
|
|
p = find_execable(*argv);
|
|
|
|
if (p) {
|
|
|
|
puts(p);
|
|
|
|
free(p);
|
|
|
|
continue;
|
2000-05-19 11:05:19 +05:30
|
|
|
}
|
|
|
|
}
|
2006-10-06 02:40:53 +05:30
|
|
|
status = EXIT_FAILURE;
|
2000-05-19 11:05:19 +05:30
|
|
|
}
|
2006-10-12 03:46:56 +05:30
|
|
|
|
2006-10-27 04:51:47 +05:30
|
|
|
fflush_stdout_and_exit(status);
|
2000-05-19 11:05:19 +05:30
|
|
|
}
|