which.c 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * Which implementation for busybox
  4. *
  5. * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  20. *
  21. * Based on which from debianutils
  22. */
  23. #include <string.h>
  24. #include <stdio.h>
  25. #include <stdlib.h>
  26. #include <unistd.h>
  27. #include "busybox.h"
  28. extern int which_main(int argc, char **argv)
  29. {
  30. char *path_list;
  31. int i, count=1, status = EXIT_SUCCESS;
  32. if (argc <= 1 || **(argv + 1) == '-') {
  33. bb_show_usage();
  34. }
  35. argc--;
  36. path_list = getenv("PATH");
  37. if (path_list != NULL) {
  38. for (i=strlen(path_list); i > 0; i--) {
  39. if (path_list[i]==':') {
  40. path_list[i]=0;
  41. count++;
  42. }
  43. }
  44. } else {
  45. path_list = "/bin\0/sbin\0/usr/bin\0/usr/sbin\0/usr/local/bin";
  46. count = 5;
  47. }
  48. while (argc-- > 0) {
  49. char *buf;
  50. char *path_n;
  51. char found = 0;
  52. argv++;
  53. /*
  54. * Check if we were given the full path, first.
  55. * Otherwise see if the file exists in our $PATH.
  56. */
  57. path_n = path_list;
  58. buf = *argv;
  59. if (access(buf, X_OK) == 0) {
  60. found = 1;
  61. } else {
  62. for (i = 0; i < count; i++) {
  63. buf = concat_path_file(path_n, *argv);
  64. if (access(buf, X_OK) == 0) {
  65. found = 1;
  66. break;
  67. }
  68. free(buf);
  69. path_n += (strlen(path_n) + 1);
  70. }
  71. }
  72. if (found) {
  73. puts(buf);
  74. } else {
  75. status = EXIT_FAILURE;
  76. }
  77. }
  78. return status;
  79. }
  80. /*
  81. Local Variables:
  82. c-file-style: "linux"
  83. c-basic-offset: 4
  84. tab-width: 4
  85. End:
  86. */