aboutsummaryrefslogtreecommitdiff
path: root/toys/dirname.c
blob: 759cee7fcec315fa76afe1751050209db1bb43bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* 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));
}