在Unix中,可以使用cp
命令來(lái)復(fù)制文件或目錄。具體操作如下:
cp sourcefile destinationfile
其中,sourcefile
是要復(fù)制的源文件的路徑,destinationfile
是復(fù)制到的目標(biāo)文件的路徑。
cp -r sourcedir destinationdir
其中,sourcedir
是要復(fù)制的源目錄的路徑,destinationdir
是復(fù)制到的目標(biāo)目錄的路徑。使用-r
選項(xiàng)來(lái)遞歸復(fù)制整個(gè)目錄結(jié)構(gòu)。
可以使用cp --help
命令來(lái)查看更多關(guān)于cp
命令的用法和選項(xiàng)。