icon Top 9 categories map      RocketAware >

mv(1)

Tips: Browse or Search all pages for efficient awareness of more than 6000 of the most popular reusable and open source applications, functions, libraries, and FAQs.


The "RKT couplings" below include links to source code, updates, additional information, advice, FAQs, and overviews.


Home

Search all pages


Subjects

By activity
Professions, Sciences, Humanities, Business, ...

User Interface
Text-based, GUI, Audio, Video, Keyboards, Mouse, Images,...

Text Strings
Conversions, tests, processing, manipulation,...

Math
Integer, Floating point, Matrix, Statistics, Boolean, ...

Processing
Algorithms, Memory, Process control, Debugging, ...

Stored Data
Data storage, Integrity, Encryption, Compression, ...

Communications
Networks, protocols, Interprocess, Remote, Client Server, ...

Hard World
Timing, Calendar and Clock, Audio, Video, Printer, Controls...

File System
Management, Filtering, File & Directory access, Viewers, ...

    

RocketLink!--> Man page versions: OpenBSD FreeBSD NetBSD RedHat Solaris Others

[IEEE Std1003.2-1992 (``POSIX.2'')]

MV(1)                      OpenBSD Reference Manual                      MV(1)

NAME
     mv - move files



SYNOPSIS
     mv [-fi] source target
     mv [-fi] source ... directory

DESCRIPTION
     In its first form, the mv utility renames the file named by the source
     operand to the destination path named by the target operand.  This form
     is assumed when the last operand does not name an already existing direc-
     tory.

     In its second form, mv moves each file named by a source operand to a
     destination file in the existing directory named by the directory
     operand.  The destination path for each operand is the pathname produced
     by the concatenation of the last operand, a slash, and the final pathname
     component of the named file.

     The options are as follows:

     -f    Do not prompt for confirmation before overwriting the destination
           path.

     -i    Causes mv to write a prompt to standard error before moving a file
           that would overwrite an existing file.  If the response from the
           standard input begins with the character ``y'', the move is at-
           tempted.

     The last of any -f or -i options is the one which affects mv's behavior.

     It is an error for either the source operand or the destination path to
     specify a directory unless both do.

     If the destination path does not have a mode which permits writing, mv
     prompts the user for confirmation as specified for the -i option.

     As the rename(2) call does not work across file systems, mv uses cp(1)
     and rm(1) to accomplish the move.  The effect is equivalent to:

           rm -f destination_path && \
           cp -pr source_file destination && \
           rm -rf source_file

     The mv utility exits 0 on success or >0 if an error occurred.

SEE ALSO
     cp(1),  symlink(7)

STANDARDS
     The mv utility is expected to be IEEE Std1003.2 (``POSIX.2'') compatible.

OpenBSD 2.6                      May 31, 1993                                1

Source: OpenBSD 2.6 man pages. Copyright: Portions are copyrighted by BERKELEY
SOFTWARE DESIGN, INC., The Regents of the University of California, Massachusetts
Institute of Technology, Free Software Foundation, FreeBSD Inc., and others.



(Corrections, notes, and links courtesy of RocketAware.com)


[Detailed Topics]
FreeBSD Sources for mv(1)
OpenBSD sources for mv(1)


[Overview Topics]

Up to: File Information - Obtaining file information (status, configuration, et al)


RocketLink!--> Man page versions: OpenBSD FreeBSD NetBSD RedHat Solaris Others

[IEEE Std1003.2-1992 (``POSIX.2'')]




Rapid-Links: Search | About | Comments | Submit Path: RocketAware > mv.1/
RocketAware.com is a service of Mib Software
Copyright 1999, Forrest J. Cavalier III. All Rights Reserved.
We welcome submissions and comments