You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
477 B
26 lines
477 B
7 months ago
|
/* 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"
|
||
|
|
||
|
void dirname_main(void)
|
||
|
{
|
||
|
char **arg;
|
||
|
|
||
|
for (arg = toys.optargs; *arg; ++arg) puts(dirname(*arg));
|
||
|
}
|