file_cmds-45.tar.gz
[apple/file_cmds.git] / mv / mv.1
1 .\"     $NetBSD: mv.1,v 1.11 1998/04/20 05:43:30 ross Exp $
2 .\"
3 .\" Copyright (c) 1989, 1990, 1993
4 .\"     The Regents of the University of California.  All rights reserved.
5 .\"
6 .\" This code is derived from software contributed to Berkeley by
7 .\" the Institute of Electrical and Electronics Engineers, Inc.
8 .\"
9 .\" Redistribution and use in source and binary forms, with or without
10 .\" modification, are permitted provided that the following conditions
11 .\" are met:
12 .\" 1. Redistributions of source code must retain the above copyright
13 .\"    notice, this list of conditions and the following disclaimer.
14 .\" 2. Redistributions in binary form must reproduce the above copyright
15 .\"    notice, this list of conditions and the following disclaimer in the
16 .\"    documentation and/or other materials provided with the distribution.
17 .\" 3. All advertising materials mentioning features or use of this software
18 .\"    must display the following acknowledgement:
19 .\"     This product includes software developed by the University of
20 .\"     California, Berkeley and its contributors.
21 .\" 4. Neither the name of the University nor the names of its contributors
22 .\"    may be used to endorse or promote products derived from this software
23 .\"    without specific prior written permission.
24 .\"
25 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
26 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 .\" SUCH DAMAGE.
36 .\"
37 .\"     @(#)mv.1        8.1 (Berkeley) 5/31/93
38 .\"
39 .Dd May 31, 1993
40 .Dt MV 1
41 .Os
42 .Sh NAME
43 .Nm mv
44 .Nd move files
45 .Sh SYNOPSIS
46 .Nm
47 .Op Fl fi
48 .Ar source target
49 .Nm ""
50 .Op Fl fi
51 .Ar source ... directory
52 .Sh DESCRIPTION
53 .Pp
54 In its first form, the
55 .Nm
56 utility renames the file named by the
57 .Ar source
58 operand to the destination path named by the
59 .Ar target
60 operand.
61 This form is assumed when the last operand does not name an already
62 existing directory.
63 .Pp
64 In its second form,
65 .Nm
66 moves each file named by a
67 .Ar source
68 operand to a destination file in the existing directory named by the
69 .Ar directory
70 operand.
71 The destination path for each operand is the pathname produced by the
72 concatenation of the last operand, a slash, and the final pathname
73 component of the named file.
74 .Pp
75 The following options are available:
76 .Bl -tag -width flag
77 .It Fl f
78 Do not prompt for confirmation before overwriting the destination
79 path.
80 .It Fl i
81 Causes
82 .Nm
83 to write a prompt to standard error before moving a file that would
84 overwrite an existing file.
85 If the response from the standard input begins with the character ``y'',
86 the move is attempted.
87 .El
88 The last of any
89 .Fl f
90 or
91 .Fl i
92 options is the one which affects
93 .Nm Ns 's
94 behavior.
95 .Pp
96 It is an error for either the
97 .Ar source
98 operand or the destination path to specify a directory unless both do.
99 .Pp
100 If the destination path does not have a mode which permits writing,
101 .Nm
102 prompts the user for confirmation as specified for the
103 .Fl i
104 option.
105 .Pp
106 As the
107 .Xr rename  2
108 call does not work across file systems,
109 .Nm
110 uses
111 .Xr cp 1
112 and
113 .Xr rm 1
114 to accomplish the move.
115 The effect is equivalent to:
116 .Bd -literal -offset indent
117 rm -f destination_path && \e
118 \tcp -PRp source_file destination && \e
119 \trm -rf source_file
120 .Ed
121 .Pp
122 The
123 .Nm
124 utility exits 0 on success, and >0 if an error occurs.
125 .Sh SEE ALSO
126 .Xr cp 1 ,
127 .Xr symlink 7
128 .Sh STANDARDS
129 The
130 .Nm
131 utility is expected to be
132 .St -p1003.2
133 compatible.