2012-01-30 22:41:33 +00:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
2015-02-14 20:02:41 +00:00
|
|
|
#include <sys/stat.h>
|
|
|
|
|
2012-01-30 22:41:33 +00:00
|
|
|
#include <errno.h>
|
|
|
|
#include <stdio.h>
|
2014-11-13 17:29:30 +00:00
|
|
|
|
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;
|
2015-01-30 11:45:54 +00:00
|
|
|
|
|
|
|
static int
|
2015-03-02 20:43:56 +00:00
|
|
|
mv(const char *s1, const char *s2, int depth)
|
2015-01-30 11:45:54 +00:00
|
|
|
{
|
2015-04-18 20:04:49 +00:00
|
|
|
struct recursor r = { .fn = rm, .hist = NULL, .depth = 0, .maxdepth = 0,
|
|
|
|
.follow = 'P', .flags = 0 };
|
2015-03-12 23:25:32 +00:00
|
|
|
|
2015-03-04 22:22:43 +00:00
|
|
|
if (!rename(s1, s2))
|
2015-01-30 11:45:54 +00:00
|
|
|
return (mv_status = 0);
|
|
|
|
if (errno == EXDEV) {
|
2015-02-09 20:56:23 +00:00
|
|
|
cp_aflag = cp_rflag = cp_pflag = 1;
|
2015-03-19 16:45:30 +00:00
|
|
|
cp_follow = 'P';
|
2015-03-02 20:43:56 +00:00
|
|
|
cp(s1, s2, depth);
|
2015-11-13 14:12:09 +00:00
|
|
|
recurse(s1, NULL, &r);
|
2015-01-30 11:45:54 +00:00
|
|
|
return (mv_status = cp_status || rm_status);
|
|
|
|
}
|
|
|
|
mv_status = 1;
|
2015-03-04 22:22:43 +00:00
|
|
|
|
2015-01-30 11:45:54 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2012-01-30 22:41:33 +00:00
|
|
|
|
2013-06-14 18:20:47 +00:00
|
|
|
static void
|
|
|
|
usage(void)
|
|
|
|
{
|
2015-03-04 22:22:43 +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();
|
2015-11-01 10:16:49 +00:00
|
|
|
} ARGEND
|
2013-06-14 18:20:47 +00:00
|
|
|
|
2013-08-31 22:04:49 +00:00
|
|
|
if (argc < 2)
|
|
|
|
usage();
|
|
|
|
|
2015-03-04 22:22:43 +00:00
|
|
|
if (argc > 2) {
|
|
|
|
if (stat(argv[argc - 1], &st) < 0)
|
|
|
|
eprintf("stat %s:", argv[argc - 1]);
|
|
|
|
if (!S_ISDIR(st.st_mode))
|
|
|
|
eprintf("%s: not a directory\n", argv[argc - 1]);
|
|
|
|
}
|
2015-03-02 20:43:56 +00:00
|
|
|
enmasse(argc, argv, mv);
|
2013-06-14 18:20:47 +00:00
|
|
|
|
2015-01-30 11:45:54 +00:00
|
|
|
return mv_status;
|
2012-01-30 22:41:33 +00:00
|
|
|
}
|