view toys/dirname.c @ 412:2b521c791e4e

Patch shouldn't be bothered by DOS newlines.
author Rob Landley <rob@landley.net>
date Sun, 22 Jan 2012 22:28:04 -0600
parents 67b0ded3c56c
children 31215cc6c9f2
line wrap: on
line source

/* vi: set sw=4 ts=4:
 *
 * 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));
}