Files
sbase/rmdir.c
T

33 lines
502 B
C
Raw Normal View History

2013-10-07 17:03:26 +01:00
/* See LICENSE file for copyright and license details. */
2013-06-09 15:20:55 +02:00
#include <stdio.h>
#include <stdlib.h>
2013-06-09 15:20:55 +02: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 11:51:18 +01:00
main(int argc, char *argv[])
2013-06-09 15:20:55 +02:00
{
2014-06-09 21:03:42 +02:00
ARGBEGIN {
default:
2013-06-09 15:20:55 +02:00
usage();
2014-06-09 21:03:42 +02:00
} ARGEND;
2013-06-09 15:20:55 +02:00
2014-06-09 21:03:42 +02:00
if (argc < 1)
usage();
for(; argc > 0; argc--, argv++)
if(rmdir(argv[0]) == -1)
2013-06-09 15:20:55 +02:00
fprintf(stderr, "rmdir: '%s': %s\n",
2014-06-09 21:03:42 +02:00
argv[0], strerror(errno));
2013-06-09 15:20:55 +02:00
return EXIT_SUCCESS;
2013-06-09 15:20:55 +02:00
}