view toys/dirname.c @ 236:6b292ee780ab

Minor cleanup: move mke2fs options into mke2fs.c.
author Rob Landley <rob@landley.net>
date Sat, 19 Jan 2008 17:55:45 -0600
parents 163498bf547b
children 5e8ca70863aa
line wrap: on
line source

/* 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

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