blob: 7f51e9f071fd7d4bba335cdcc89b637f73db17b8 (
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
|
/* dirname.c - show directory portion of path
*
* Copyright 2011 Rob Landley <rob@landley.net>
*
* See http://opengroup.org/onlinepubs/9699919799/utilities/dirname.html
USE_DIRNAME(NEWTOY(dirname, "<1", TOYFLAG_USR|TOYFLAG_BIN))
config DIRNAME
bool "dirname"
default y
help
usage: dirname PATH
Show directory portion of path.
*/
#include "toys.h"
#include <libgen.h>
void dirname_main(void)
{
puts(dirname(*toys.optargs));
}
|