sbase/rm.c

39 lines
529 B
C

/* See LICENSE file for copyright and license details. */
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/stat.h>
#include "fs.h"
#include "util.h"
static void
usage(void)
{
eprintf("usage: %s [-fr] FILE...\n", argv0);
}
int
main(int argc, char *argv[])
{
ARGBEGIN {
case 'f':
rm_fflag = true;
break;
case 'r':
rm_rflag = true;
break;
default:
usage();
} ARGEND;
if (argc < 1)
usage();
for(; argc > 0; argc--, argv++)
rm(argv[0]);
return EXIT_SUCCESS;
}