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

/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命令行中完成此任务?请注意,这是一个使用两个文件夹的示例,我有100个这样的文件夹。

最佳答案

分享和享受。

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

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

10-11 09:00