我想在别名中插入不同的拼写变体,例如cat
命令。我可以使用“或”符号来做到这一点吗?还是应该在新行上插入?
alias at|cart|cst '/bin/cat'
答案1
的帮助alias
表明它可以一次分配多个别名:
alias: alias [-p] [name[=value] ... ]
Define or display aliases.
Without arguments, `alias' prints the list of aliases in the reusable
form `alias NAME=VALUE' on standard output.
Otherwise, an alias is defined for each NAME whose VALUE is given.
A trailing space in VALUE causes the next word to be checked for
alias substitution when the alias is expanded.
因此,您可以使用括号扩展来生成name=value
对:
alias {at,cart,cst}='/bin/cat'
所以:
$ alias {at,cart,cst}='/bin/cat'
$ type at cart cst
at is aliased to `/bin/cat'
cart is aliased to `/bin/cat'
cst is aliased to `/bin/cat'
也就是说,看看 zsh,它有内置拼写错误纠正(这对没有帮助at
,但对其他人有帮助):
% setopt correct % sl zsh: correct `sl' to `ls' [nyae]? y % setopt correctall % ls x.v11r4 zsh: correct `x.v11r4' to `X.V11R4' [nyae]? n /usr/princton/src/x.v11r4 not found % ls /etc/paswd zsh: correct to `/etc/paswd' to `/etc/passwd' [nyae]? y /etc/passwd
y
如果当 shell 询问您是否要更正某个单词时按下,该单词将被更正。如果按下n
,该单词将保持不变。按下a
可中止该命令,按下e
可再次显示该行以供编辑,以防您同意该单词拼写错误但不喜欢更正结果。
答案2
我认为您不能一次指定多个别名。
但您可以像这样循环遍历列表:
for a in cart xat vat xst cst vst dog; do alias "$a"='/bin/cat'; done
确保别名尚未被其他程序使用(如 at
您的示例中所示)。