[下一頁][首頁][上一頁]

我如何拷貝檔案?

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
$
[上一頁][首頁][下一頁]