ubuntumv文件不见了

ubuntu mv file disappeared

上,我有以下目录结构:

/var/www/html

我在 www,我决定将一个文件从该目录移动到 html。我执行了以下命令:

mv myfile.iso /html

现在我看不到该文件。显然我没有正确使用命令。对恢复文件有帮助吗?

当您需要移动文件时,您需要这样做:"mv foo ~/Desktop", 你忘记了 ~ 标志。 mv 所做的也是重命名文件。

The mv command will move a file to a different location or will rename a file. Examples are as follows: "mv file foo" will rename the file "file" to "foo". "mv foo ~/Desktop" will move the file "foo" to your Desktop directory, but it will not rename it. You must specify a new file name to rename a file.

你应该看看你是否能在根目录中找到一个名为 html 的文件夹。

是的,您的文件现在称为 html,它位于根目录 /(我什至不确定这是否可能),或者它已移动到现有目录 /html

您必须执行以下操作才能找回它(我提到的第二种情况):

mv /html/myfile.iso /var/www/html

或者如果它不起作用(第一种情况):

mv /html /var/www/html/myfile.iso