sbase/mv.c

56 lines
842 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"
static int mv(const char *, const char *);
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);
2014-10-02 22:46:04 +00:00
return 0;
2012-01-30 22:41:33 +00:00
}
static int
2013-06-14 18:20:47 +00:00
mv(const char *s1, const char *s2)
2012-01-30 22:41:33 +00:00
{
if (rename(s1, s2) == 0)
return 0;
2013-06-14 18:20:47 +00:00
if (errno == EXDEV) {
cp_rflag = 1;
rm_rflag = 1;
2012-01-30 22:41:33 +00:00
cp(s1, s2);
rm(s1);
return 0;
}
return -1;
}