[下一页][首页][上一页]

我如何拷贝档案?

NAME
     cp - 拷贝档案
SYNOPSIS
     cp source_file target_file
     cp source_file ... target_directory
范例:
$ ls
Notes           hello_world     mydir
dir             hello_world.c   notes
$ cp Notes NewNotes
$ ls
NewNotes        dir             hello_world.c   notes
Notes           hello_world     mydir
$ cp Notes NewNotes dir ...我拷贝二个档案到一个目录中...
$ ls dir
NewNotes        Notes
$
[上一页][首页][下一页]