在Linux中,最好使用bash,实现下面目标的最佳方法是什么?
说我有一系列编号的文件
001.png, 002.png, 003.png
将它们移动/重命名为倒序的最佳方法是什么?
加分点:我有一系列1500个文件,我实际上想要颠倒40个第二个块的顺序。注意这些字母不是名字的一部分。我用它们来表明内容的独特性。
001a, 002b, ..., 040c <- leave as is
041a, 042b, ..., 080c <- reverse order of these files
081a, 082b, ..., 120c <- leave as is
121a, 122b, ..., 160a <- reverse order of these files
变为:
001a, 002b, ..., 040c
041c, 042b, ..., 080a
081a, 082b, ..., 120c
121c, 122b, ..., 160a