2012-01-30 22:41:33 +00:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
|
|
|
#include <stdio.h>
|
2013-03-05 20:46:48 +00:00
|
|
|
|
2012-01-30 22:41:33 +00:00
|
|
|
#include "../fs.h"
|
|
|
|
#include "../util.h"
|
|
|
|
|
2014-11-13 20:24:47 +00:00
|
|
|
int rm_fflag = 0;
|
|
|
|
int rm_rflag = 0;
|
2012-01-30 22:41:33 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
rm(const char *path)
|
|
|
|
{
|
2014-11-13 18:54:28 +00:00
|
|
|
if (rm_rflag)
|
2012-01-30 22:41:33 +00:00
|
|
|
recurse(path, rm);
|
2014-11-19 19:59:37 +00:00
|
|
|
if (remove(path) < 0 && !rm_fflag)
|
2012-01-30 22:41:33 +00:00
|
|
|
eprintf("remove %s:", path);
|
|
|
|
}
|