linux – zsh中等号有什么特殊含义?

前端之家收集整理的这篇文章主要介绍了linux – zsh中等号有什么特殊含义?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在我的zsh脚本中,我有一条线
echo some text ================================

令我惊讶的是,为此行发出了错误消息:

zsh: =============================== not found

从命令行进行试验,我发现当有一个等号时,shell会感到沮丧:

$echo =z
zsh: z not found

但在这里,我们有:

$echo =echo
/usr/bin/echo

从这个观察来看,它看起来好像

=XXX

会被解释为

$(which XXX)

但是,我没有在zsh联机帮助页中找到任何有关此“替换”的内容.这块魔法描述在哪里?

解决方法

docs

14.7.3 ‘=’ expansion

If a word begins with an unquoted ‘=’ and the EQUALS option is set,
the remainder of the word is taken as the name of a command. If a
command exists by that name,the word is replaced by the full pathname
of the command.

here在更多的话

原文链接:https://www.f2er.com/linux/395034.html

猜你在找的Linux相关文章