在终端中编写 CLI 命令并在末尾添加注释

问题描述 投票:0回答:1

我意识到,可以在 shell 脚本中使用

#

#we're about to do something because we want to
do_something();

不过,偶尔在命令提示符下写一条注释inline会很好,但我还没有找到这样做的方法:

owilliams@OWILL04833 ~/go/test-tools$ ls -la config*     #find all configuration files
error: ls: #find: No such file or directory

特别是这样它会进入

.bash_history
.zsh_history
。 这可能吗?

comments zsh
1个回答
0
投票

您可以使用

zsh
在交互式
setopt interactivecomments
中启用评论支持。您可以将其放入您的
.zshrc
文件中。我不明白为什么默认情况下不启用此功能。与交互式使用相比,脚本具有不同的语法是不直观的。请参阅 命令行 Zsh 中的注释

© www.soinside.com 2019 - 2024. All rights reserved.