linux如何復(fù)制文件到當(dāng)前目錄

小億
305
2023-09-27 15:52:29

在Linux中,可以使用cp命令將文件復(fù)制到當(dāng)前目錄。使用以下命令:

cp /path/to/file .

其中,/path/to/file是要復(fù)制的文件的路徑,.表示當(dāng)前目錄。

另外,也可以使用以下命令:

cp /path/to/file $(pwd)

其中,$(pwd)表示當(dāng)前目錄的路徑。

0