ubase/umount.c

37 lines
552 B
C
Raw Normal View History

/* See LICENSE file for copyright and license details. */
2013-08-07 08:52:10 +00:00
#include <stdio.h>
#include "ubase.h"
#include "util.h"
static void
usage(void)
{
eprintf("usage: %s [-lf] target\n", argv0);
2013-08-07 08:52:10 +00:00
}
int
main(int argc, char *argv[]) {
int i;
int flags = 0;
2013-08-07 08:52:10 +00:00
int ret = 0;
ARGBEGIN {
case 'f':
flags |= UBASE_MNT_FORCE;
break;
case 'l':
flags |= UBASE_MNT_DETACH;
2013-08-07 08:52:10 +00:00
break;
default:
usage();
} ARGEND;
if (argc < 1)
usage();
for (i = 0; i < argc; i++) {
if (do_umount(argv[i], flags) < 0)
2013-08-07 08:52:10 +00:00
eprintf("do_umount:");
ret = 1;
}
return ret;
}