sbase/mv.c

57 lines
898 B
C
Raw Normal View History

2012-01-30 22:41:33 +00:00
/* See LICENSE file for copyright and license details. */
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/stat.h>
#include <unistd.h>
2012-01-30 22:41:33 +00:00
#include "fs.h"
#include "util.h"
2015-01-30 11:48:33 +00:00
static int mv_status = 0;
static int
mv(const char *s1, const char *s2)
{
if (rename(s1, s2) == 0)
return (mv_status = 0);
if (errno == EXDEV) {
cp_rflag = 1;
rm_rflag = 1;
cp(s1, s2);
rm(s1);
return (mv_status = cp_status || rm_status);
}
mv_status = 1;
return -1;
}
2012-01-30 22:41:33 +00:00
2013-06-14 18:20:47 +00:00
static void
usage(void)
{
eprintf("usage: %s [-f | -i] source... dest\n", argv0);
2013-06-14 18:20:47 +00:00
}
2012-01-30 22:41:33 +00:00
int
main(int argc, char *argv[])
{
struct stat st;
2013-06-14 18:20:47 +00:00
ARGBEGIN {
case 'f':
2015-01-28 21:11:50 +00:00
case 'i':
break;
2013-06-14 18:20:47 +00:00
default:
usage();
} ARGEND;
if (argc < 2)
usage();
if (argc > 3 && !(stat(argv[argc-1], &st) == 0 && S_ISDIR(st.st_mode)))
2012-01-30 22:41:33 +00:00
eprintf("%s: not a directory\n", argv[argc-1]);
2013-06-14 18:20:47 +00:00
enmasse(argc, &argv[0], mv);
return mv_status;
2012-01-30 22:41:33 +00:00
}