如何在别名中转义 awk 命令中的字段变量?

发布于 2024-09-07 01:22:30 字数 358 浏览 1 评论 0原文

以下是文件的内容:

one two three
four five six

这是我的别名

alias testawk "awk '{print $2}' file"

这是我得到的:

> testawk
one two three
four five six

但是当我发出此命令时,我得到了我想要的:

> awk '{print $2}' file
two
five

如何转义别名中的字段说明符?注意:我正在使用 csh

Here are the contents of a file:

one two three
four five six

And here is my alias

alias testawk "awk '{print $2}' file"

This is what I get:

> testawk
one two three
four five six

But when I give this command, then I get what I want:

> awk '{print $2}' file
two
five

How do I escape the field specifier in the alias? NOTE: I'm using csh

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

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

发布评论

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

评论(1

伤痕我心 2024-09-14 01:22:30

' 包裹别名,并使用 '\'' 作为嵌入的 '

alias testawk 'awk '\''{print $2}'\'' file'

Wrap the alias w/ ' and use '\'' for the embedded '.

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