你可以使用cp
命令将文件复制到指定目录。
命令的基本格式是:
cp [选项] 源文件 目标目录
例如,要将文件file.txt
复制到目录/home/user/documents/
,可以使用以下命令:
cp file.txt /home/user/documents/
如果要将多个文件复制到目录,可以列出多个源文件,并指定目标目录。
cp file1.txt file2.txt /home/user/documents/
如果要将整个目录复制到另一个目录,可以使用-r
选项来递归复制目录及其内容。
cp -r source_directory /home/user/destination_directory
希望对你有所帮助!