正则表达式批量重命名OS X终端中的文件

时间:2012-05-19 10:53:14

标签: regex macos shell sed awk

我正在使用正则表达式批量重命名文件,即。

s/123/onetwothree/g

我记得我可以使用awk和sed使用正则表达式,但无法弄清楚如何将它们一起管道以获得所需的输出。

5 个答案:

答案 0 :(得分:70)

您可以安装基于perl的重命名工具:

brew install rename

而不仅仅是使用它:

rename 's/123/onetwothree/g' *

如果你想测试你的正则表达式而不重命名任何文件只需添加-n switch

答案 1 :(得分:19)

执行重命名操作的一种有效方法是在sed管道中构造重命名命令并将它们提供给shell。

ls |
sed -n 's/\(.*\)\(123\)\(.*\)/mv "\1\2\3" "\1onetwothree\2"/p' |
sh

答案 2 :(得分:5)

files = "*"
for f in $files; do
     newname=`echo "$f" | sed 's/123/onetwothree/g'`
     mv "$f" "$newname"
done

答案 3 :(得分:4)

我采用友好的递归正则表达式文件名重命名器,默认情况下只模拟替换并显示生成的文件名。

当您对空运行结果感到满意时,使用-w实际写入更改,-s以禁止显示不匹配的文件; -h--help会显示使用说明。

最简单的用法:

# replace all occurences of 'foo' with 'bar'
# "foo-foo.txt" >> "bar-bar.txt"
ren.py . 'foo' 'bar' -s

# only replace 'foo' at the beginning of the filename
# "foo-foo.txt" >> "bar-foo.txt"
ren.py . '^foo' 'bar' -s

支持匹配的群组(例如\1\2等):

# rename "spam.txt" to "spam-spam-spam.py"
ren.py . '(.+)\.txt' '\1-\1-\1.py' -s 

# rename "12-lovely-spam.txt" to "lovely-spam-12.txt"
# (assuming two digits at the beginning and a 3 character extension 
ren.py . '^(\d{2})-(.+)\.(.{3})' '\2-\1.\3' -s
  

注意:在测试结果并想要实际编写更改时,不要忘记添加-w

适用于Python 2.x和Python 3.x。

#!/usr/bin/python
# -*- coding: utf-8 -*-
from __future__ import print_function
import argparse
import os
import fnmatch
import sys
import shutil
import re


def rename_files(args):

    pattern_old = re.compile(args.search_for)

    for path, dirs, files in os.walk(os.path.abspath(args.root_folder)):

        for filename in fnmatch.filter(files, "*.*"):

            if pattern_old.findall(filename):
                new_name = pattern_old.sub(args.replace_with, filename)

                filepath_old = os.path.join(path, filename)
                filepath_new = os.path.join(path, new_name)

                if not new_name:
                    print('Replacement regex {} returns empty value! Skipping'.format(args.replace_with))
                    continue

                print(new_name)

                if args.write_changes:
                    shutil.move(filepath_old, filepath_new)
            else:
                if not args.suppress_non_matching:
                    print('Name [{}] does not match search regex [{}]'.format(filename, args.search_for))


if __name__ == '__main__':

    parser = argparse.ArgumentParser(description='Recursive file name renaming with regex support')

    parser.add_argument('root_folder',
                        help='Top folder for the replacement operation',
                        nargs='?',
                        action='store',
                        default='.')
    parser.add_argument('search_for',
                        help='string to search for',
                        action='store')
    parser.add_argument('replace_with',
                        help='string to replace with',
                        action='store')
    parser.add_argument('-w', '--write-changes',
                        action='store_true',
                        help='Write changes to files (otherwise just simulate the operation)',
                        default=False)
    parser.add_argument('-s', '--suppress-non-matching',
                        action='store_true',
                        help='Hide files that do not match',
                        default=False)

    args = parser.parse_args(sys.argv[1:])

    print(args)
    rename_files(args)

答案 4 :(得分:1)

Namechanger非常好。它支持用于搜索和替换的正则表达式:

enter image description here