创建使用带有正则表达式的renamer的别名

时间:2016-11-13 16:11:22

标签: node.js bash alias zsh

renamer --regex --find '(^..).*' --replace '$1.tex' * 是我想要使用的表达式。 但对于我的生活,我无法弄清楚我将如何创建它作为别名/ bash / zsh脚本。

alias renamer_help="renamer --help" 工作,但 当我和上面的表达一样的时候。 我的贝壳,我告诉我 .zshrc:119: renamer --regex --find '(^..).*' --replace '$1.tex' * not found

我基本上花了最后几个小时尝试不同的转义序列,但没有任何效果:/

1 个答案:

答案 0 :(得分:1)

函数就像别名,但更强大,不需要转义:

myrenamer() {
  renamer --regex --find '(^..).*' --replace '$1.tex' *
}

使用myrenamer和别名一起运行。