用它包含的唯一常规文件替换每个目录

Replace each directory with the sole regular file it contains

我需要将多个目录中的文件重命名为父目录的名称并将它们向上移动一个目录并删除空目录。

示例结构:

/export
   exp_20210101
      3747-46473-328383-5555
   exp_20210102
      4533-45323-354345-5366

想要的结果:

/export
   exp_20210101
   exp_20210102

3747-46473-328383-5555 重命名为 exp_20210101

无扩展名(Linux)
我更喜欢用 bash 脚本来做。

已经尝试了几个示例(类似问题),但它们不适用于我的情况。

I need to rename files in multiple directories to the name of the parent directory and move them up one directory and the delete the empty directories.

我不认为这是可能的,你不能在同一个目录中有一个常规文件和一个同名目录。

您应该将每个文件移动到与其父级相同的级别而不更改其名称(假设那里可能不存在同名文件)。然后你可以删除父文件并将文件重命名为它的名字。

for f in /export/*/*; do
  echo mv "$f" "${f%/*/*}"
  echo rmdir "${f%/*}"
  echo mv "${f%/*/*}/${f##*/}" "${f%/*}"
done

如果输出看起来不错,请删除 echos。