在 Linux 系统中,可以使用 cp
命令来复制文件到另一个目录。具体操作如下:
cp /path/to/source/file /path/to/destination/directory
其中 /path/to/source/file
是要复制的原始文件路径,/path/to/destination/directory
是要复制到的目标目录路径。执行上述命令后,原始文件就会被复制到指定的目标目录下。
需要注意的是,如果目标目录已经存在同名文件,则会覆盖该文件。如果不希望覆盖同名文件,可以加上 -n
参数来避免覆盖,或者加上 -i
参数来提示用户是否覆盖。例如:
cp -n /path/to/source/file /path/to/destination/directory
cp -i /path/to/source/file /path/to/destination/directory
上述命令中,-n
表示不覆盖同名文件,而 -i
则表示在存在同名文件时询问用户是否覆盖。
另外,如果要同时复制多个文件,可以将所有要复制的文件路径都列在命令行上,以空格分隔。例如:
cp /path/to/source/file1 /path/to/source/file2 /path/to/destination/directory
这样就可以将 file1
和 file2
同时复制到指定的目标目录下。