aboutsummaryrefslogtreecommitdiff
path: root/toys/basename.c
diff options
context:
space:
mode:
Diffstat (limited to 'toys/basename.c')
-rw-r--r--toys/basename.c31
1 files changed, 0 insertions, 31 deletions
diff --git a/toys/basename.c b/toys/basename.c
deleted file mode 100644
index 70ffe5ba..00000000
--- a/toys/basename.c
+++ /dev/null
@@ -1,31 +0,0 @@
-/* vi: set sw=4 ts=4:
- *
- * basename.c - print non-directory portion of path
- *
- * Copyright 2007 Charlie Shepherd <masterdriverz@gentoo.org>
- *
- * See http://www.opengroup.org/onlinepubs/009695399/utilities/basename.html
-
-USE_BASENAME(NEWTOY(basename, "<1>2", TOYFLAG_BIN))
-
-config BASENAME
- bool "basename"
- default y
- help
- usage: basename path [suffix]
-
- Print the part of path after the last slash, optionally minus suffix.
-*/
-
-#include "toys.h"
-
-void basename_main(void)
-{
- char *name = basename(*toys.optargs);
- char *suffix = toys.optargs[1];
- if (suffix) {
- char *end = name+strlen(name)-strlen(suffix);
- if (end>name && !strcmp(end,suffix)) *end=0;
- }
- puts(name);
-}