MV.1
Upload User: jnzhq888
Upload Date: 2007-01-18
Package Size: 51694k
Code Size: 1k
Category:

OS Develop

Development Platform:

WINDOWS

  1. MV(1)                     Minix Programmer's Manual                      MV(1)
  2. NAME
  3.      mv - move or rename a file
  4. SYNOPSIS
  5.      mv [-ifsmvx] file1 file2
  6.      mv [-ifsvx] file ... directory
  7. OPTIONS
  8.      -i   Prompt before removing existing files
  9.      -f   Do not prompt before removing existing files
  10.      -s   Do not clear any mode bits if owner can't be set
  11.      -m   Merge directory trees
  12.      -v   Tell what mv is doing
  13.      -x   Do not cross device boundaries
  14. EXAMPLES
  15.      mv oldname newname  # Move oldname to newname
  16.      mv file1 file2 /user/ast
  17.                          # Move two files to /user/ast
  18. DESCRIPTION
  19.      Mv moves one or more files from one place in the file system to  another.
  20.      If  the  old  path  and  new  path  are on the same device, it is done by
  21.      renaming otherwise by copying. If you're not  superuser,  the  copy  will
  22.      destroy  the  file's owner, group and setuid/setgid bits.  mv will prompt
  23.      before removing non-writable files if stdin is a terminal or the -i  flag
  24.      was specified.
  25. SEE ALSO
  26.      cp(1), rename(2).
  27.                                                                              1