renamer --regex --find '(^..).*' --replace '$1.tex' *
是我想要使用的表达式。
但对于我的生活,我无法弄清楚我将如何创建它作为别名/ bash / zsh脚本。
alias renamer_help="renamer --help"
工作,但
当我和上面的表达一样的时候。
我的贝壳,我告诉我
.zshrc:119: renamer --regex --find '(^..).*' --replace '$1.tex' * not found
我基本上花了最后几个小时尝试不同的转义序列,但没有任何效果:/
答案 0 :(得分:1)
函数就像别名,但更强大,不需要转义:
myrenamer() {
renamer --regex --find '(^..).*' --replace '$1.tex' *
}
使用myrenamer
和别名一起运行。