2013-10-07 16:03:26 +00:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
2015-01-30 11:21:26 +00:00
|
|
|
#include <libgen.h>
|
2013-06-09 13:20:55 +00:00
|
|
|
#include <stdio.h>
|
2013-10-07 15:41:55 +00:00
|
|
|
#include <stdlib.h>
|
2015-01-30 11:21:26 +00:00
|
|
|
#include <string.h>
|
2013-06-09 13:20:55 +00:00
|
|
|
#include <unistd.h>
|
2014-11-13 17:29:30 +00:00
|
|
|
|
2013-06-09 13:20:55 +00:00
|
|
|
#include "util.h"
|
|
|
|
|
|
|
|
static void
|
|
|
|
usage(void)
|
|
|
|
{
|
2015-01-30 11:21:26 +00:00
|
|
|
eprintf("usage: rmdir [-p] dir ...\n");
|
2013-06-09 13:20:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2014-04-18 10:51:18 +00:00
|
|
|
main(int argc, char *argv[])
|
2013-06-09 13:20:55 +00:00
|
|
|
{
|
2015-01-30 11:43:55 +00:00
|
|
|
int pflag = 0, ret = 0;
|
2015-01-30 11:21:26 +00:00
|
|
|
char *d;
|
|
|
|
|
2014-06-09 19:03:42 +00:00
|
|
|
ARGBEGIN {
|
2015-01-30 11:21:26 +00:00
|
|
|
case 'p':
|
|
|
|
pflag = 1;
|
|
|
|
break;
|
2014-06-09 19:03:42 +00:00
|
|
|
default:
|
2013-06-09 13:20:55 +00:00
|
|
|
usage();
|
2014-06-09 19:03:42 +00:00
|
|
|
} ARGEND;
|
2013-06-09 13:20:55 +00:00
|
|
|
|
2014-06-09 19:03:42 +00:00
|
|
|
if (argc < 1)
|
|
|
|
usage();
|
|
|
|
|
2015-01-30 11:21:26 +00:00
|
|
|
for (; argc > 0; argc--, argv++) {
|
|
|
|
if (rmdir(argv[0]) < 0) {
|
2014-11-17 16:22:01 +00:00
|
|
|
weprintf("rmdir %s:", argv[0]);
|
2015-01-30 11:43:55 +00:00
|
|
|
ret = 1;
|
2015-01-30 11:21:26 +00:00
|
|
|
}
|
2015-01-30 11:43:55 +00:00
|
|
|
if (pflag && !ret) {
|
2015-01-30 11:21:26 +00:00
|
|
|
d = dirname(argv[0]);
|
|
|
|
for (; strcmp(d, "/") && strcmp(d, ".") ;) {
|
|
|
|
if (rmdir(d) < 0)
|
|
|
|
eprintf("rmdir %s:", d);
|
|
|
|
d = dirname(d);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-01-30 11:43:55 +00:00
|
|
|
return ret;
|
2013-06-09 13:20:55 +00:00
|
|
|
}
|