2000-02-21 17:27:17 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Mini basename implementation for busybox
|
|
|
|
*
|
2004-03-15 08:29:22 +00:00
|
|
|
* Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
|
2000-02-21 17:27:17 +00:00
|
|
|
*
|
2006-07-12 07:56:04 +00:00
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
2000-02-21 17:27:17 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2003-03-19 09:13:01 +00:00
|
|
|
/* BB_AUDIT SUSv3 compliant */
|
|
|
|
/* http://www.opengroup.org/onlinepubs/007904975/utilities/basename.html */
|
|
|
|
|
|
|
|
|
|
|
|
/* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org)
|
|
|
|
*
|
|
|
|
* Changes:
|
|
|
|
* 1) Now checks for too many args. Need at least one and at most two.
|
|
|
|
* 2) Don't check for options, as per SUSv3.
|
|
|
|
* 3) Save some space by using strcmp(). Calling strncmp() here was silly.
|
|
|
|
*/
|
2001-03-09 23:59:51 +00:00
|
|
|
|
2007-05-26 19:00:18 +00:00
|
|
|
#include "libbb.h"
|
2000-02-21 17:27:17 +00:00
|
|
|
|
2007-04-10 15:43:37 +00:00
|
|
|
/* This is a NOFORK applet. Be very careful! */
|
|
|
|
|
2007-10-11 10:05:36 +00:00
|
|
|
int basename_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2006-03-06 20:47:33 +00:00
|
|
|
int basename_main(int argc, char **argv)
|
2000-02-21 17:27:17 +00:00
|
|
|
{
|
2003-03-19 09:13:01 +00:00
|
|
|
size_t m, n;
|
2000-07-10 20:08:09 +00:00
|
|
|
char *s;
|
2000-02-21 17:27:17 +00:00
|
|
|
|
2003-03-19 09:13:01 +00:00
|
|
|
if (((unsigned int)(argc-2)) >= 2) {
|
|
|
|
bb_show_usage();
|
2000-02-21 17:27:17 +00:00
|
|
|
}
|
2000-05-19 05:35:19 +00:00
|
|
|
|
2007-09-24 18:27:04 +00:00
|
|
|
/* It should strip slash: /abc/def/ -> def */
|
|
|
|
s = bb_get_last_path_component_strip(*++argv);
|
2000-05-10 05:00:31 +00:00
|
|
|
|
2003-03-19 09:13:01 +00:00
|
|
|
if (*++argv) {
|
2000-05-10 05:00:31 +00:00
|
|
|
n = strlen(*argv);
|
|
|
|
m = strlen(s);
|
2003-03-19 09:13:01 +00:00
|
|
|
if ((m > n) && ((strcmp)(s+m-n, *argv) == 0)) {
|
2000-05-10 05:00:31 +00:00
|
|
|
s[m-n] = '\0';
|
2003-03-19 09:13:01 +00:00
|
|
|
}
|
2000-05-10 05:00:31 +00:00
|
|
|
}
|
2003-03-19 09:13:01 +00:00
|
|
|
|
2001-05-16 14:21:09 +00:00
|
|
|
puts(s);
|
2003-03-19 09:13:01 +00:00
|
|
|
|
2007-04-10 15:43:37 +00:00
|
|
|
return fflush(stdout);
|
2000-02-21 17:27:17 +00:00
|
|
|
}
|