basename.c 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * Mini basename implementation for busybox
  4. *
  5. * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
  6. *
  7. * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  8. */
  9. /* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org)
  10. *
  11. * Changes:
  12. * 1) Now checks for too many args. Need at least one and at most two.
  13. * 2) Don't check for options, as per SUSv3.
  14. * 3) Save some space by using strcmp(). Calling strncmp() here was silly.
  15. */
  16. //config:config BASENAME
  17. //config: bool "basename (438 bytes)"
  18. //config: default y
  19. //config: help
  20. //config: basename is used to strip the directory and suffix from filenames,
  21. //config: leaving just the filename itself. Enable this option if you wish
  22. //config: to enable the 'basename' utility.
  23. //applet:IF_BASENAME(APPLET_NOFORK(basename, basename, BB_DIR_USR_BIN, BB_SUID_DROP, basename))
  24. //kbuild:lib-$(CONFIG_BASENAME) += basename.o
  25. /* BB_AUDIT SUSv3 compliant */
  26. /* http://www.opengroup.org/onlinepubs/007904975/utilities/basename.html */
  27. //usage:#define basename_trivial_usage
  28. //usage: "FILE [SUFFIX]"
  29. //usage:#define basename_full_usage "\n\n"
  30. //usage: "Strip directory path and .SUFFIX from FILE"
  31. //usage:
  32. //usage:#define basename_example_usage
  33. //usage: "$ basename /usr/local/bin/foo\n"
  34. //usage: "foo\n"
  35. //usage: "$ basename /usr/local/bin/\n"
  36. //usage: "bin\n"
  37. //usage: "$ basename /foo/bar.txt .txt\n"
  38. //usage: "bar"
  39. #include "libbb.h"
  40. /* This is a NOFORK applet. Be very careful! */
  41. int basename_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
  42. int basename_main(int argc UNUSED_PARAM, char **argv)
  43. {
  44. size_t m, n;
  45. char *s;
  46. if (argv[1] && strcmp(argv[1], "--") == 0) {
  47. argv++;
  48. }
  49. if (!argv[1])
  50. bb_show_usage();
  51. /* It should strip slash: /abc/def/ -> def */
  52. s = bb_get_last_path_component_strip(*++argv);
  53. m = strlen(s);
  54. if (*++argv) {
  55. if (argv[1])
  56. bb_show_usage();
  57. n = strlen(*argv);
  58. if ((m > n) && (strcmp(s+m-n, *argv) == 0)) {
  59. m -= n;
  60. /*s[m] = '\0'; - redundant */
  61. }
  62. }
  63. /* puts(s) will do, but we can do without stdio this way: */
  64. s[m++] = '\n';
  65. /* NB: != is correct here: */
  66. return full_write(STDOUT_FILENO, s, m) != (ssize_t)m;
  67. }