1 /* vi: set sw=4 ts=4: */
3 * Mini dirname implementation for busybox
5 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
7 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
9 //config:config DIRNAME
10 //config: bool "dirname (611 bytes)"
13 //config: dirname is used to strip a non-directory suffix from
14 //config: a file name.
16 //applet:IF_DIRNAME(APPLET_NOFORK(dirname, dirname, BB_DIR_USR_BIN, BB_SUID_DROP, dirname))
18 //kbuild:lib-$(CONFIG_DIRNAME) += dirname.o
20 /* BB_AUDIT SUSv3 compliant */
21 /* http://www.opengroup.org/onlinepubs/007904975/utilities/dirname.html */
23 //usage:#define dirname_trivial_usage
25 //usage:#define dirname_full_usage "\n\n"
26 //usage: "Strip non-directory suffix from FILENAME"
28 //usage:#define dirname_example_usage
29 //usage: "$ dirname /tmp/foo\n"
31 //usage: "$ dirname /tmp/foo/\n"
36 /* This is a NOFORK applet. Be very careful! */
38 int dirname_main(int argc
, char **argv
) MAIN_EXTERNALLY_VISIBLE
;
39 int dirname_main(int argc UNUSED_PARAM
, char **argv
)
41 puts(dirname(single_argv(argv
)));