sbase/rmdir.c

33 lines
491 B
C
Raw Normal View History

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