为 Bash 中的参数列表创建别名
我想知道是否有任何方法可以为参数列表创建别名。
考虑以下命令:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将参数放入数组中,然后使用该数组调用命令。
Put your arguments in an array, and then invoke the command using that array.
它们被称为变量。
They're called variables.