gpt4 book ai didi

bash - "for i"使用 getopt 时没有 "in [sequence]"结束

转载 作者:行者123 更新时间:2023-11-29 08:59:23 25 4
gpt4 key购买 nike

我找到了这个在 shell 中使用 getopt 命令的示例脚本。

#!/bin/bash
args=$(getopt ab $*)
set -- $args
for i;
do
case "$i" in
-a)shift; echo "it was a";;
-b)shift; echo "it was b";;
esac;
done

它运行良好,但我不明白变量 $i 赋值在哪里。它如何知道它必须遍历 $arg。你能解释一下吗?

最佳答案

如图here ,如果没有给出 in seq,则 for 默认为 $@for i 分配您的 $i 变量。

关于bash - "for i"使用 getopt 时没有 "in [sequence]"结束,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16102089/

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