在 1 个参数之后,每个参数的开始不等于 -*

在 1 个参数之后,每个参数的开始不等于 -*

在 2 个参数之后,每个参数的开头不等于 -*

for args in "$@"
do
if [[ ${@: 2} != -* ]]; then 
case "$args" in
   -q)
      if [ ! -z "$2" ]; then
          echo "$2"
          shift
       fi
    shift
    ;;
   -w)
      if [ ! -z "$2" ]; then
          echo "$2"
          shift
       fi
    shift
    ;;
   -e)
      if [ ! -z "$2" ]; then
          echo "$2"
          shift
       fi
    shift
    ;;
esac
else 
    echo "arguments start with '-'"
fi
done

-q s d f g h仅适用于第一个参数

-q -v -b -n -m -n-q -l j u -y d错误的

第一个参数之后,其余参数不得以字符“-”开头

if [ ! -z "$2" ];- 检查参数是否为空

答案1

您似乎想要验证除第一个参数外没有任何参数以破折号开头。

你可以这样做:

#!/bin/bash

if [[ $1 != -* ]]; then
    printf '1st argument, "%s", does not start with a dash\n' "$1"
    exit 1
fi >&2

arg1=$1

shift

for arg do
    if [[ $arg == -* ]]; then
        printf 'Argument "%s" starts with a dash\n' "$arg"
        exit 1
    fi
done >&2

echo 'All arguments ok'

printf 'arg 1 = "%s"\n' "$arg1"
printf 'other arg = "%s"\n' "$@"

如果您需要明确第一个参数-q,请将第一个测试从

[[ $1 != -* ]]

[[ $1 != -q ]]

相关内容