sbase/rm.c
FRIGN 9fd4a745f8 Add history and config-struct to recurse
For loop detection, a history is mandatory. In the process of also
adding a flexible struct to recurse, the recurse-definition was moved
to fs.h.
The motivation behind the struct is to allow easy extensions to the
recurse-function without having to change the prototypes of all
functions in the process.
Adding flags is really simple as well now.

Using the recursor-struct, it's also easier to see which defaults
apply to a program (for instance, which type of follow, ...).

Another change was to add proper stat-lstat-usage in recurse. It
was wrong before.
2015-03-13 00:29:48 +01:00

40 lines
586 B
C

/* See LICENSE file for copyright and license details. */
#include "fs.h"
#include "util.h"
static void
usage(void)
{
eprintf("usage: %s [-f] [-Rr] file ...\n", argv0);
}
int
main(int argc, char *argv[])
{
struct recursor r = { .fn = rm, .hist = NULL, .depth = 0, .follow = 'P', .flags = 0};
ARGBEGIN {
case 'f':
rm_fflag = 1;
break;
case 'R':
case 'r':
rm_rflag = 1;
break;
default:
usage();
} ARGEND;
if (!argc) {
if (!rm_fflag)
usage();
else
return 0;
}
for (; *argv; argc--, argv++)
rm(*argv, NULL, &r);
return rm_status || recurse_status;
}