将文件和目录移动到 UNIX 中的子文件夹

发布于 2024-10-14 01:13:26 字数 164 浏览 6 评论 0原文

当我输入

mv ../* . 
mv: cannot move '../<dir name>' to a subdirectory of itself, './<dir name>'

shell/mv 命令如何检测此行为?

When I type

mv ../* . 
mv: cannot move '../<dir name>' to a subdirectory of itself, './<dir name>'

How does the shell/mv command detect this behaviour?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

一萌ing 2024-10-21 01:13:26

据我所知,mv 使用 rename() POSIX 系统调用,规范中表示:

在以下情况下,rename() 函数将失败:

(...)

[EINVAL] [CX] 新目录
路径名包含路径前缀
命名旧目录。

...以及无数其他详细的故障模式。

操作系统大概是通过比较层次结构中的中间目录的inode编号来实现通用VFS层的检测。

As far as I know, mv uses the rename() POSIX syscall, for which the specification says:

The rename() function shall fail if:

(...)

[EINVAL] [CX] The new directory
pathname contains a path prefix that
names the old directory.

... along with a myriad of other detailed failure modes.

The operating system presumably implements the detection at the general VFS layer by comparing the inode numbers of the intermediate directories along the hierarchy.

度的依靠╰つ 2024-10-21 01:13:26

shell 负责在将命令行传递给 mv 之前扩展 * 等通配符,并且它直接这样做,仅基于存在的文件/目录,而不知道什么该程序是什么或者它可能想用这些名称做什么。因此,在这种情况下,../* 会扩展到父目录中的每个文件/目录名称,包括当前目录

。然后 mv 遍历它接收到的参数列表,尝试将除最后一个之外的所有参数移到最后一个,这会导致您看到的错误。

The shell is responsible for expanding wildcards like * before passing the command line to mv and its does so directly, based solely on what files/directories exist, with no knowledge of what the program is or what it might want to do with those names. So in this case, ../* is expanded to every file/directory name in the parent directory, including the current directory <dir name>. Then mv goes through the list of arguments it receives, trying to move every one except for the last into the last, which causes the error you see.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文