Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果您执行以下命令,文件将放在哪里:
mv <file> ...
注意当前目录中没有同名...的目录。
...
当前目录中可能没有同名...的目录,但您正在创建一个同名的文件。(因为它以 a 开头.,所以它是隐藏的)。
.
如果使用以下-a参数,您可以看到这样的隐藏文件ls:
-a
ls
$ ls -a . .. $ touch file; mv file ...; ls -a . .. ...