sbase/util/rm.c

18 lines
317 B
C
Raw Normal View History

2012-01-30 22:41:33 +00:00
/* See LICENSE file for copyright and license details. */
#include <stdbool.h>
#include <stdio.h>
2012-01-30 22:41:33 +00:00
#include "../fs.h"
#include "../util.h"
bool rm_fflag = false, rm_rflag = false;
2012-01-30 22:41:33 +00:00
void
rm(const char *path)
{
if (rm_rflag)
2012-01-30 22:41:33 +00:00
recurse(path, rm);
if (remove(path) == -1 && !rm_fflag)
2012-01-30 22:41:33 +00:00
eprintf("remove %s:", path);
}