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>
|
2014-11-13 18:54:28 +00:00
|
|
|
#include <unistd.h>
|
2014-11-13 17:29:30 +00:00
|
|
|
|
2012-01-30 22:41:33 +00:00
|
|
|
#include "fs.h"
|
|
|
|
#include "util.h"
|
|
|
|
|
2014-06-01 12:59:47 +00:00
|
|
|
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)
|
|
|
|
{
|
2013-09-27 14:45:39 +00:00
|
|
|
eprintf("usage: %s [-f] 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 {
|
2013-09-27 14:45:39 +00:00
|
|
|
case 'f':
|
|
|
|
break;
|
2013-06-14 18:20:47 +00:00
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
} ARGEND;
|
|
|
|
|
2013-08-31 22:04:49 +00:00
|
|
|
if (argc < 2)
|
|
|
|
usage();
|
|
|
|
|
2014-11-13 17:29:30 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2014-06-01 12:59:47 +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) {
|
2014-11-13 20:24:47 +00:00
|
|
|
cp_rflag = 1;
|
|
|
|
rm_rflag = 1;
|
2012-01-30 22:41:33 +00:00
|
|
|
cp(s1, s2);
|
|
|
|
rm(s1);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|