在 BASH 别名或函数中使用 awk

发布于 2024-12-02 00:24:10 字数 313 浏览 0 评论 0原文

我有一个命令在命令行中运行得很好,但当我尝试将其放入别名或函数中时却无法运行。

$ 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 技术交流群。

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

发布评论

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

评论(2

别忘他 2024-12-09 00:24:10

您需要像这样转义 $

 alias a="awk '{print \$1}' /tmp/textfile"

否则您的别名是:

 awk '{print }' /tmp/textfile

它将打印整个文件...

You need to escape the $ like so:

 alias a="awk '{print \$1}' /tmp/textfile"

Otherwise your alias is:

 awk '{print }' /tmp/textfile

Which prints the whole file...

栖迟 2024-12-09 00:24:10

使用函数而不是别名

myfunc(){ awk '{print $1}' file; }

Use a function instead of alias

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