Shell 为多个参数设置别名

发布于 2024-08-11 01:11:46 字数 259 浏览 4 评论 0原文

有没有一种好方法可以对命令进行多次替换?

例如

alias cmd = 'ssh -R $1:$2:$1:$2 $3 | something {$1, $2, $3}'
cmd 127.0.0.1 1234 server

像这样的东西..

实际上,像这样通过管道传输输出并没有任何意义,但我希望看到类似的语法。

有命名映射也很好,但只有索引就可以了。

也许使用 awk ?

Is there a good way to do multiple substitutions for aliasing a command?

For example

alias cmd = 'ssh -R $1:$2:$1:$2 $3 | something {$1, $2, $3}'
cmd 127.0.0.1 1234 server

Something like this..

Actually, this doesn't really make any sense to pipe the output like this, but similar syntax is what I'd like to see.

It's be nice to have named mappings too, but just indexes is fine.

Using awk perhaps?

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

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

发布评论

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

评论(2

2024-08-18 01:11:46

使用 shell 函数怎么样?:

$ cmd() { echo ssh -R $1:$2:$1:$2 $3 ; echo something {$1, $2, $3} ; }
$ cmd 127.0.0.1 1234 server
ssh -R 127.0.0.1:1234:127.0.0.1:1234 server
something {127.0.0.1, 1234, server}

How about using a shell function instead?:

$ cmd() { echo ssh -R $1:$2:$1:$2 $3 ; echo something {$1, $2, $3} ; }
$ cmd 127.0.0.1 1234 server
ssh -R 127.0.0.1:1234:127.0.0.1:1234 server
something {127.0.0.1, 1234, server}
吾家有女初长成 2024-08-18 01:11:46

您必须使用函数来定义它。示例:

cmd () { echo -e "$1\n$2" | grep "$1"; }

不要忘记 {echo 之间的空格。

这将导致以下行为:

$ cmd hello world
hello

You have to define it by using a function. Example:

cmd () { echo -e "$1\n$2" | grep "$1"; }

Don't forget the space between { and echo.

This would result in the following behaviour:

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