2000-02-21 22:57:17 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Mini basename implementation for busybox
|
|
|
|
*
|
2004-03-15 13:59:22 +05:30
|
|
|
* Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
|
2000-02-21 22:57:17 +05:30
|
|
|
*
|
2006-07-12 13:26:04 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
2000-02-21 22:57:17 +05:30
|
|
|
*/
|
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
/* 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-10 05:29:51 +05:30
|
|
|
|
2010-06-07 17:44:26 +05:30
|
|
|
/* BB_AUDIT SUSv3 compliant */
|
|
|
|
/* http://www.opengroup.org/onlinepubs/007904975/utilities/basename.html */
|
|
|
|
|
2010-06-04 23:29:49 +05:30
|
|
|
//kbuild:lib-$(CONFIG_BASENAME) += basename.o
|
|
|
|
|
|
|
|
//config:config BASENAME
|
|
|
|
//config: bool "basename"
|
2010-06-06 07:44:28 +05:30
|
|
|
//config: default y
|
2010-06-04 23:29:49 +05:30
|
|
|
//config: help
|
|
|
|
//config: basename is used to strip the directory and suffix from filenames,
|
|
|
|
//config: leaving just the filename itself. Enable this option if you wish
|
|
|
|
//config: to enable the 'basename' utility.
|
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2000-02-21 22:57:17 +05:30
|
|
|
|
2007-04-10 21:13:37 +05:30
|
|
|
/* This is a NOFORK applet. Be very careful! */
|
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int basename_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2006-03-07 02:17:33 +05:30
|
|
|
int basename_main(int argc, char **argv)
|
2000-02-21 22:57:17 +05:30
|
|
|
{
|
2003-03-19 14:43:01 +05:30
|
|
|
size_t m, n;
|
2000-07-11 01:38:09 +05:30
|
|
|
char *s;
|
2000-02-21 22:57:17 +05:30
|
|
|
|
2010-06-07 17:44:26 +05:30
|
|
|
if ((unsigned)(argc-2) >= 2) {
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_show_usage();
|
2000-02-21 22:57:17 +05:30
|
|
|
}
|
2000-05-19 11:05:19 +05:30
|
|
|
|
2007-09-24 23:57:04 +05:30
|
|
|
/* It should strip slash: /abc/def/ -> def */
|
|
|
|
s = bb_get_last_path_component_strip(*++argv);
|
2000-05-10 10:30:31 +05:30
|
|
|
|
2008-04-01 20:17:57 +05:30
|
|
|
m = strlen(s);
|
2003-03-19 14:43:01 +05:30
|
|
|
if (*++argv) {
|
2000-05-10 10:30:31 +05:30
|
|
|
n = strlen(*argv);
|
2010-06-07 17:44:26 +05:30
|
|
|
if ((m > n) && (strcmp(s+m-n, *argv) == 0)) {
|
2008-04-01 20:17:57 +05:30
|
|
|
m -= n;
|
2008-04-01 21:59:21 +05:30
|
|
|
/*s[m] = '\0'; - redundant */
|
2003-03-19 14:43:01 +05:30
|
|
|
}
|
2000-05-10 10:30:31 +05:30
|
|
|
}
|
2003-03-19 14:43:01 +05:30
|
|
|
|
2008-04-01 20:17:57 +05:30
|
|
|
/* puts(s) will do, but we can do without stdio this way: */
|
|
|
|
s[m++] = '\n';
|
2008-11-06 20:43:33 +05:30
|
|
|
/* NB: != is correct here: */
|
|
|
|
return full_write(STDOUT_FILENO, s, m) != (ssize_t)m;
|
2000-02-21 22:57:17 +05:30
|
|
|
}
|