将 Bourne Shell 变量传递到 cut 命令中
我正在尝试执行以下操作。
foo="foo:foo1"
cc= `$foo | cut -f2 -d:`
我明白为什么这行不通,但我不知道这样做。
提前致谢。
I am trying to do the following.
foo="foo:foo1"
cc= `$foo | cut -f2 -d:`
I understand why this would not work but I am at a loss as to do this.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个:
需要进行 2 处更改:
变量 foo 然后剪切它。
=
周围不能有空格给 shell 赋值时
多变的。
Try this:
There are 2 changes to make:
variable foo and then cut it.
=
when assigning a value to a shell
variable.
在伯恩,你可以使用 set。无需外部命令。
in bourne, you can use set. No external command needed.