如何复制和粘贴文件?


24

我要复制并粘贴文件。该文件的名称为mkoctfile.m
该文件的路径是:

/usr/share/octave/3.2.4/m/miscellaneous/mkoctfile.m

我想将其粘贴到以下路径

/usr/bin/mkoctfile-3.2.4

我已经使用以下命令制作了目录:

sudo su mkdir -p /usr/bin/mkoctfile-3.2.4

但我不知道如何mkoctfile.m在此路径中复制和粘贴。

请告诉我我必须使用什么命令。

Answers:


41

使用cp命令复制文件,语法为cp sourcefile destinationfile。使用mv命令移动文件,基本上将其剪切并粘贴到其他位置。

您的示例将使用的确切语法是:

sudo cp /usr/bin/octave/3.2.4/m/miscellaneous/mkoctfile.m /usr/bin/mkoctfile-3.2.4

有关cpmv命令的更多信息,您可以运行:

man cp

要么

man mv

查看手册页


1
谢谢!但是输入完整的文件路径很困难。有没有更好的办法?
BKSpurgeon '16

对于@BKSurgeon,我建议使用Tab键查看可用的路径/目录,或者键入ls一次查看所有路径/目录。
吉米

0

从您要复制文件的位置转到该目录,即/usr/bin/octave/3.2.4/m/miscellaneous

cd /usr/bin/octave/3.2.4/m/miscellaneous

然后输入

`cp mkoctfile.m ../../../mkoctfile-3.2.4`

../../../ 表示您将退回到bin文件夹并键入要在其中复制文件的任何目录。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.