在 BASH 别名或函数中使用 awk
我有一个命令在命令行中运行得很好,但当我尝试将其放入别名或函数中时却无法运行。
$ awk '{print $1}' /tmp/textfile
0
这是正确的,因为“0”位于“textfile”的位置 1。
$ alias a="awk '{print $1}' /tmp/textfile"
$ a
1 0 136 94
这是“textfile”中的整行。我尝试了各种我能想到的可能有用的引号、括号和反引号。我可以用多种格式得到同样的问题。
我不明白什么?
I've a command that works just fine at the command line, but not when I try to put it in an alias or function.
$ awk '{print $1}' /tmp/textfile
0
That's correct, as '0' is in position 1 of "textfile".
$ alias a="awk '{print $1}' /tmp/textfile"
$ a
1 0 136 94
That's the entire line in "textfile". I've tried every variety of quotes, parentheses and backticks that I could imagine might work. I can get the same problem in a wide variety of formats.
What am I not understanding?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要像这样转义
$
:否则您的别名是:
它将打印整个文件...
You need to escape the
$
like so:Otherwise your alias is:
Which prints the whole file...
使用函数而不是别名
Use a function instead of alias