要创建此命令的别名
find . -name '*.sh' -exec chmod a+x '{}' \;
在设置时我无法逃避单引号
别名
alias mx='find . -name '*.sh' -exec chmod a+x '{}' \;'
任何帮助是赞赏。
你可以使用双引号:
alias mx="find . -name '*.sh' -exec chmod a+x {} \;"
编辑:此外,{}周围的单引号不是必需的。