Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
MV.1
Upload User: jnzhq888
Upload Date: 2007-01-18
Package Size: 51694k
Code Size: 1k
Category:
OS Develop
Development Platform:
WINDOWS
- MV(1) Minix Programmer's Manual MV(1)
- NAME
- mv - move or rename a file
- SYNOPSIS
- mv [-ifsmvx] file1 file2
- mv [-ifsvx] file ... directory
- OPTIONS
- -i Prompt before removing existing files
- -f Do not prompt before removing existing files
- -s Do not clear any mode bits if owner can't be set
- -m Merge directory trees
- -v Tell what mv is doing
- -x Do not cross device boundaries
- EXAMPLES
- mv oldname newname # Move oldname to newname
- mv file1 file2 /user/ast
- # Move two files to /user/ast
- DESCRIPTION
- Mv moves one or more files from one place in the file system to another.
- If the old path and new path are on the same device, it is done by
- renaming otherwise by copying. If you're not superuser, the copy will
- destroy the file's owner, group and setuid/setgid bits. mv will prompt
- before removing non-writable files if stdin is a terminal or the -i flag
- was specified.
- SEE ALSO
- cp(1), rename(2).
- 1