linux如何復(fù)制多個(gè)文件夾

小億
111
2024-09-26 04:56:05

在Linux中,要復(fù)制多個(gè)文件夾,你可以使用cp命令并結(jié)合通配符。以下是一些示例:

  1. 復(fù)制當(dāng)前目錄下的所有子目錄到另一個(gè)目錄:
cp -r ./* /path/to/destination/directory/

這里,-r選項(xiàng)表示遞歸復(fù)制,.表示當(dāng)前目錄,*表示所有子目錄和文件,/path/to/destination/directory/是目標(biāo)目錄的路徑。

  1. 復(fù)制特定名稱的子目錄到另一個(gè)目錄:
cp -r dir1 dir2 /path/to/destination/directory/

這里,dir1dir2是要復(fù)制的子目錄的名稱,/path/to/destination/directory/是目標(biāo)目錄的路徑。

  1. 使用通配符復(fù)制多個(gè)子目錄:
cp -r *.txt /path/to/destination/directory/

這里,*.txt表示所有以.txt結(jié)尾的子目錄,/path/to/destination/directory/是目標(biāo)目錄的路徑。

0