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