diff options
Diffstat (limited to 'toys/dirname.c')
-rw-r--r-- | toys/dirname.c | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/toys/dirname.c b/toys/dirname.c deleted file mode 100644 index 759cee7f..00000000 --- a/toys/dirname.c +++ /dev/null @@ -1,26 +0,0 @@ -/* vi: set sw=4 ts=4: - * - * dirname.c - print directory portion of path, or "." if none. - * - * Copyright 2007 Charlie Shepherd <masterdriverz@gentoo.org> - * - * See http://www.opengroup.org/onlinepubs/009695399/utilities/dirname.html - -USE_DIRNAME(NEWTOY(dirname, "<1>1", TOYFLAG_BIN)) - -config DIRNAME - bool "dirname" - default y - help - usage: dirname path - - Print the part of path up to the last slash. -*/ - -#include "toys.h" -#include <libgen.h> - -void dirname_main(void) -{ - puts(dirname(*toys.optargs)); -} |