diff options
author | joerg <joerg@FreeBSD.org> | 1995-08-15 19:44:39 +0000 |
---|---|---|
committer | joerg <joerg@FreeBSD.org> | 1995-08-15 19:44:39 +0000 |
commit | 1d402e8a8dae296d15fceb0f14c56c80dc857007 (patch) | |
tree | a109ee878f97eca05b4df88b5afd2a23660eb268 /bin/mv | |
parent | 6fad6e0e901a54523b109ca451ee49a43d5a7999 (diff) | |
download | FreeBSD-src-1d402e8a8dae296d15fceb0f14c56c80dc857007.zip FreeBSD-src-1d402e8a8dae296d15fceb0f14c56c80dc857007.tar.gz |
The command to `move' across file system boundaries is actually
cp -PRp source_file destination
Closes PR # bin/689: mv(1) manpage
Submitted by: wosch@cs.tu-berlin.de (Wolfram Schneider)
Diffstat (limited to 'bin/mv')
-rw-r--r-- | bin/mv/mv.1 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/mv/mv.1 b/bin/mv/mv.1 index 66cbf49..01c0f2b 100644 --- a/bin/mv/mv.1 +++ b/bin/mv/mv.1 @@ -33,7 +33,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)mv.1 8.1 (Berkeley) 5/31/93 -.\" $Id$ +.\" $Id: mv.1,v 1.2 1994/09/24 02:56:06 davidg Exp $ .\" .Dd May 31, 1993 .Dt MV 1 @@ -112,7 +112,7 @@ to accomplish the move. The effect is equivalent to: .Bd -literal -offset indent rm -f destination_path && \e -\tcp -pr source_file destination && \e +\tcp -pRP source_file destination && \e \trm -rf source_file .Ed .Pp |