gpt4 book ai didi

Linux命令行,如何将所有找到的文件移动到上层目录

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:26:31 26 4
gpt4 key购买 nike

我想做的是递归地找到某些文件并将它们移动到它们当前目录的上层。

例如,

foo1/bar1/abc
foo2/bar2/bar3/abc

将更新为

foo1/abc
foo2/bar2/abc

我试过了

find -name \*abc -exec /bin/mv '{}' .. \;

但这是错误的,因为它将所有内容都移到了 $PWD 的上层目录。

是否有类似的 cmd 行方式来动态向上移动事物?还是我必须使用更复杂的脚本?

最佳答案

给你..

这就是开始的结构......

$ tree

[.]
+-- foo1
! `-- bar1
! `-- abc
!
`-- foo2
`-- bar2
`-- bar3
`-- abc

然后我们运行命令移动文件

$ find . -type f -name "*abc" -exec bash -c ' mv -v  {} `dirname {}`/.. '  \;

这会产生这个输出...

`./foo1/bar1/abc' -> `./foo1/bar1/../abc'
`./foo2/bar2/bar3/abc' -> `./foo2/bar2/bar3/../abc'

现在目录结构看起来像..

$ tree

[.]
+-- foo1
! +-- abc
! `-- bar1
!
`-- foo2
`-- bar2
+-- abc
`-- bar3

重要的一点……

-type f        <-- Make sure that you pick files not folders, if you need folders too omit this.
-name "*abc" <-- Your file-match pattern
-exec bash -c ' mv -v {} `dirname {}`/.. ' \;

这里..执行 bash,给它传递一个字符串,它将找到文件的目录,并在末尾添加一个 '/..' 以使 mv 将文件带到父目录。

重要警告:

If you expect to have the file in the root of your search then eventually the file will move to parent directory of your searching root thereby taking them out of your match pattern forever.

If you are at the root of the filesystem the files will always match and mv will become a no-op.

无论如何,最好测试一下您最终不会在根目录下找到文件,除非那是本意。 :-)

希望这对您有所帮助。

关于Linux命令行,如何将所有找到的文件移动到上层目录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11552412/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com