sbase/rmdir.c

30 lines
452 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>
#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
{
argv++;;
if(!*argv)
usage();
while(*argv) {
if(rmdir(*argv++) == -1)
fprintf(stderr, "rmdir: '%s': %s\n",
argv[-1], strerror(errno));
}
return EXIT_SUCCESS;
2013-06-09 13:20:55 +00:00
}