gpt4 book ai didi

linux - 将指定文件夹中的所有文件向上移动一个目录

转载 作者:太空宇宙 更新时间:2023-11-04 09:47:59 24 4
gpt4 key购买 nike

我有一个程序可以将文件提取到一系列子文件夹中,每个子文件夹都有一个“header”子文件夹。例如:

/share/Videos/Godfather.Part.1
/share/Videos/Godfather.Part.1/<packagename>
/share/Videos/Godfather.Part.1/<packagename>/Godfather.avi
/share/Videos/Godfather.Part.2
/share/Videos/Godfather.Part.2/<packagename>
/share/Videos/Godfather.Part.2/<packagename>/Godfather2.avi

我要取指定文件夹中的文件<packagename>并将它们向上移动一个目录,这样文件结构如下所示:

/share/Videos/Godfather.Part.1
/share/Videos/Godfather.Part.1/Godfather.avi
/share/Videos/Godfather.Part.2
/share/Videos/Godfather.Part.2/Godfather2.avi

如何在 bash 命令行中完成此任务?请注意,这是一个使用 2 个文件夹的示例,我有 100 个这样的文件夹。

最佳答案

分享和享受。

for i in `find . -name "*avi"`
do
dest=`dirname $i`
mv $i $dest/..
done

关于linux - 将指定文件夹中的所有文件向上移动一个目录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14271789/

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