2013-10-07 16:03:26 +00:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
2013-06-09 13:20:55 +00:00
|
|
|
#include <stdio.h>
|
2013-10-07 15:41:55 +00:00
|
|
|
#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
|
|
|
|
main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
argv++;;
|
|
|
|
if(!*argv)
|
|
|
|
usage();
|
|
|
|
|
|
|
|
while(*argv) {
|
|
|
|
if(rmdir(*argv++) == -1)
|
|
|
|
fprintf(stderr, "rmdir: '%s': %s\n",
|
|
|
|
argv[-1], strerror(errno));
|
|
|
|
}
|
|
|
|
|
2013-10-07 15:41:55 +00:00
|
|
|
return EXIT_SUCCESS;
|
2013-06-09 13:20:55 +00:00
|
|
|
}
|
|
|
|
|