如何将文件移动到目录?

如何将文件移动到目录?

我只是想从键盘读取文件的名称并将其移动到另一个目录。

我心里想的是:

ls

read a // the name of the file

pwd

read b //the name of the directory where I want to move the file or  the path :-?

mv $a $b

有人可以纠正我吗?在这种情况下我应该如何使用 mv 命令?

答案1

在这种情况下,很简单mv filename path/to/somewhere,但一般来说,你可能需要对基本 shell 内容进行介绍。这看起来很合理:

http://linuxcommand.org/learning_the_shell.php

尤其mv是朋友们:

http://linuxcommand.org/lts0050.php

相关内容