aboutsummaryrefslogtreecommitdiff
path: root/toys/dirname.c
blob: 9d1ad43090220afc00b550db4424087b2e0498d2 (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
/* vi: set sw=4 ts=4:
 *
 * dirname.c - print directory portion of path, or "." if none.
 *
 * Copyright 2007 Charlie Shephard <masterdriverz@gentoo.org>
 *
 * See http://www.opengroup.org/onlinepubs/009695399/utilities/dirname.html

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));
}