在CentOS中,你可以使用mv
命令將文件移動到指定目錄。以下是使用mv
命令移動文件的示例:
mv /path/to/source/file /path/to/destination/directory
其中,/path/to/source/file
是要移動的文件路徑,/path/to/destination/directory
是目標目錄的路徑。
例如,將名為example.txt
的文件移動到/home/user/documents/
目錄中:
mv example.txt /home/user/documents/
請根據你的實際路徑和文件名進行相應的更改。