使用 awk 在 bash 函数中使用命令输出变量时出错
我在尝试将命令的输出写入函数中定义的变量时遇到错误。
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:
hostsum=$(md5sum /etc/hosts | awk -F" " '{print $1}')'
Zeile 3:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为你只需要添加大括号:
这里对我来说效果很好。
bash
手册页 指出函数必须包含复合命令,其中 { list ; } 就是一个例子。I think you just need to add braces:
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.尝试:
try: