使用 awk 在 bash 函数中使用命令输出变量时出错

发布于 2024-12-26 01:57:15 字数 455 浏览 0 评论 0原文

我在尝试将命令的输出写入函数中定义的变量时遇到错误。

chk()
        hostsum=$(md5sum /etc/hosts | awk -F" " '{print $1}')
chk

它告诉我一个语法错误:

./testchk.sh:Zeile 3:Syntaxfehler beim unerwarteten Wort hostsum=$(md5sum /etc/hosts | awk -F" " '{print $1}')' ./testchk.sh: Zeile 3: hostsum=$(md5sum /etc/hosts | awk -F" " '{print $1}')'

它在函数外部工作,但由于函数添加了一些额外的引号而无法工作。 除了在函数之外使用它之外还有什么想法吗?

I'm getting an error trying to write the output of a command into a variable, which is defined in a function.

chk()
        hostsum=$(md5sum /etc/hosts | awk -F" " '{print $1}')
chk

It tells me about a syntax error:

./testchk.sh: Zeile 3: Syntaxfehler beim unerwarteten Wort
hostsum=$(md5sum /etc/hosts | awk -F" " '{print $1}')' ./testchk.sh:
Zeile 3:
hostsum=$(md5sum /etc/hosts | awk -F" " '{print $1}')'

It works outer the function, but just won't because of the function adding some extra quotes.
Any ideas except using it out of the function?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

烛影斜 2025-01-02 01:57:15

我认为你只需要添加大括号:

chk() { hostsum=$(md5sum /etc/hosts | awk -F" " '{print $1}') ; }

这里对我来说效果很好。 bash 手册页 指出函数必须包含复合命令,其中 { list ; } 就是一个例子。

I think you just need to add braces:

chk() { hostsum=$(md5sum /etc/hosts | awk -F" " '{print $1}') ; }

Works fine for me here. The bash man page says that a function has to contain a compound command, of which { list ; } is one example.

我的黑色迷你裙 2025-01-02 01:57:15

尝试:

chk() {
        hostsum=$(md5sum /etc/hosts | awk -F" " '{print $1}')
}
chk

try:

chk() {
        hostsum=$(md5sum /etc/hosts | awk -F" " '{print $1}')
}
chk
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文