sbase/rmdir.c

34 lines
494 B
C
Raw Normal View History

/* See LICENSE file for copyright and license details. */
2013-06-09 13:20:55 +00:00
#include <stdio.h>
#include <stdlib.h>
2013-06-09 13:20:55 +00:00
#include <string.h>
#include <unistd.h>
#include <errno.h>
2013-06-09 13:20:55 +00:00
#include "util.h"
static void
usage(void)
{
eprintf("usage: rmdir dir...\n");
}
int
2014-04-18 10:51:18 +00:00
main(int argc, char *argv[])
2013-06-09 13:20:55 +00:00
{
ARGBEGIN {
default:
2013-06-09 13:20:55 +00:00
usage();
} ARGEND;
2013-06-09 13:20:55 +00:00
if (argc < 1)
usage();
for (; argc > 0; argc--, argv++)
if (rmdir(argv[0]) == -1)
2013-06-09 13:20:55 +00:00
fprintf(stderr, "rmdir: '%s': %s\n",
argv[0], strerror(errno));
2013-06-09 13:20:55 +00:00
2014-10-02 22:46:04 +00:00
return 0;
2013-06-09 13:20:55 +00:00
}