gpt4 book ai didi

linux - 用参数替换 bash 脚本中的部分命令

转载 作者:太空宇宙 更新时间:2023-11-04 10:25:03 26 4
gpt4 key购买 nike

我对编程非常陌生,尤其是在 bash 方面。

我经常每天运行同一条充满许多参数的长命令,但文件名和另一个参数不同,大部分字符串保持不变。 Clonezilla 服务器就是这种情况。

我希望能够运行一个脚本,该脚本只询问我想要更改的部分,然后将这些值替换为原始字符串并将其传递给 shell。

例如:

我有一组文件名:a.img b.img c.img

我运行的命令:drbl-ocs -b -g auto -e1 auto -e2 -r -x -j2 -sc0 -p poweroff --clients-to-wait <number value here> -l en_US.UTF-8 startdisk multicast_restore <name of file> nvme0n1

我的目标是能够输入:sudo sh myscript.sh arga argb

其中“arga”是一个数字,用来代替 <number value here>和“argb”替换<name of file>在上面的字符串中。

感谢您的帮助!

最佳答案

脚本的命令行参数可以在位置参数中找到,这些参数的名称是正整数。

#!/bin/sh

drbl-ocs -b -g auto -e1 auto -e2 -r -x -j2 -sc0 \
-p poweroff --clients-to-wait "$1" -l en_US.UTF-8 \
startdisk multicast_restore "$2" nvme0n1

关于linux - 用参数替换 bash 脚本中的部分命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41988764/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com