为 Bash 中的参数列表创建别名

发布于 2024-11-18 17:06:19 字数 582 浏览 2 评论 0原文

我想知道是否有任何方法可以为参数列表创建别名。

考虑以下命令:

my_command --class_a_argument_one --class_a_argument_two --class_a_argument_three --class_a_argument_four

my_command --class_b_argument_one --class_b_argument_two --class_b_argument_three --class_b_argument_four

my_second_command --class_a_argument_one --class_a_argument_two --class_a_argument_three --class_a_argument_four

我想为每个参数列表创建两个不同的别名,以便我可以使用以下命令运行这两个命令:

my_command class_a_arguments
my_second_command class_a_arguments
my_command class_b_arguments

有什么想法吗?

I was wondering if there's any way to create an alias for a list of arguments.

Considering the following commands:

my_command --class_a_argument_one --class_a_argument_two --class_a_argument_three --class_a_argument_four

my_command --class_b_argument_one --class_b_argument_two --class_b_argument_three --class_b_argument_four

my_second_command --class_a_argument_one --class_a_argument_two --class_a_argument_three --class_a_argument_four

I want to create two different aliases for each list of arguments so that I could run these two commands using these:

my_command class_a_arguments
my_second_command class_a_arguments
my_command class_b_arguments

Any ideas?

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

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

发布评论

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

评论(2

鹤仙姿 2024-11-25 17:06:20

将参数放入数组中,然后使用该数组调用命令。

$ arr1=(-e '\e[32mHello world\e[0m')
$ echo "${arr1[@]}"
Hello world

Put your arguments in an array, and then invoke the command using that array.

$ arr1=(-e '\e[32mHello world\e[0m')
$ echo "${arr1[@]}"
Hello world
戈亓 2024-11-25 17:06:20

它们被称为变量。

A="foo bar"
B="baz qoox"
my_command $A
your_command $B

They're called variables.

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