尝试使用命令提示符将程序文件 notepad.exe 从 \windows 复制到 \tools 目录。尝试使用命令提示符完成简单的任务,但仍然无法掌握。还没有找到一组适合我的指令,对“计算”非常陌生
答案1
尝试以下命令,
cp /path/to/notepad.exe /path/to/the/parent/directory/tools
上述命令将 notepad.exe 文件从目录(根据您的目录)复制到您的工具目录。
/path/to/notepad.exe
- notepad.exe 文件的完整路径
/path/to/the/parent/directory/tools
- 工具目录的完整路径
运行man cp
以了解更多详细信息。