# 使用通配符批量创建 多个文件:
$ touch zqunor{1..7}.txt
# 批量将多个后缀为 .txt 的文本文件重命名为以 .c 为后缀的文件:
$ rename 's/\.txt/\.c/' *.txt
# 批量将多个文件的文件名改为大写:
$ rename 'y/a-z/A-Z/' *.c
2022-09-16 19:09:47
# 使用通配符批量创建 多个文件:
$ touch zqunor{1..7}.txt
# 批量将多个后缀为 .txt 的文本文件重命名为以 .c 为后缀的文件:
$ rename 's/\.txt/\.c/' *.txt
# 批量将多个文件的文件名改为大写:
$ rename 'y/a-z/A-Z/' *.c