一、cp命令 Linux中的複製命令。 複製文件: 複製目錄: 二、mv命令 mv命令可以作為Linux中的剪切命令,也可以給文件或者文件夾重命名。 剪切文件: 剪切文件夾: 文件重命名: 文件夾重命名: 三、註意 cp文件夾時需要-r參數,mv文件夾時不需要-r參數。 ...
一、cp命令
Linux中的複製命令。
複製文件:
wang@wang:~/workpalce/python$ tree . ├── 1.txt ├── dir └── module 2 directories, 1 file wang@wang:~/workpalce/python$ cp 1.txt module/ wang@wang:~/workpalce/python$ tree . ├── 1.txt ├── dir └── module └── 1.txt 2 directories, 2 files
複製目錄:
wang@wang:~/workpalce/python$ tree . ├── 1.txt ├── dir └── module └── 1.txt 2 directories, 2 files wang@wang:~/workpalce/python$ cp module/ dir/ -r wang@wang:~/workpalce/python$ tree . ├── 1.txt ├── dir │ └── module │ └── 1.txt └── module └── 1.txt 3 directories, 3 files
二、mv命令
mv命令可以作為Linux中的剪切命令,也可以給文件或者文件夾重命名。
剪切文件:
wang@wang:~/workpalce/python$ tree . ├── 1.txt ├── dir └── module 2 directories, 1 file wang@wang:~/workpalce/python$ mv 1.txt module/ wang@wang:~/workpalce/python$ tree . ├── dir └── module └── 1.txt 2 directories, 1 file
剪切文件夾:
wang@wang:~/workpalce/python$ tree . ├── dir └── module └── 1.txt 2 directories, 1 file wang@wang:~/workpalce/python$ mv module/ dir/ wang@wang:~/workpalce/python$ tree . └── dir └── module └── 1.txt 2 directories, 1 file
文件重命名:
wang@wang:~/workpalce/python$ tree . ├── 1.txt └── module 1 directory, 1 file wang@wang:~/workpalce/python$ mv 1.txt 2.txt wang@wang:~/workpalce/python$ tree . ├── 2.txt └── module 1 directory, 1 file
文件夾重命名:
wang@wang:~/workpalce/python$ tree . ├── 2.txt └── module 1 directory, 1 file wang@wang:~/workpalce/python$ mv module/ dir wang@wang:~/workpalce/python$ tree . ├── 2.txt └── dir 1 directory, 1 file
三、註意
cp文件夾時需要-r參數,mv文件夾時不需要-r參數。