我想将文件复制并粘贴到/usr
文件夹中,但我想我需要 root 权限才能这样做,所以我需要学习如何通过终端将文件从一个位置复制并粘贴到另一个位置。
答案1
这应该可以做到:
对于文件:sudo cp /path/to/file /path/to/destination-folder/
对于文件夹:sudo cp -R /path/to/folder /path to destination-folder
我想将文件复制并粘贴到/usr
文件夹中,但我想我需要 root 权限才能这样做,所以我需要学习如何通过终端将文件从一个位置复制并粘贴到另一个位置。
这应该可以做到:
对于文件:sudo cp /path/to/file /path/to/destination-folder/
对于文件夹:sudo cp -R /path/to/folder /path to destination-folder