SC2214 – ShellCheck Wiki

See this page on GitHub

Sitemap


This case is not specified by getopts.

Problematic code:

while getopts "vr" n
do
  case "$n" in
    v) echo "Verbose" ;;
    r) echo "Recursive" ;;
    n) echo "Dry-run" ;;
    *) usage;;
  esac
done

Correct code:

while getopts "vrn" n    # 'n' added here
do
  case "$n" in
    v) echo "Verbose" ;;
    r) echo "Recursive" ;;
    n) echo "Dry-run" ;;
    *) usage;;
  esac
done

Rationale:

You have a case statement in a while getopts loop that matches a flag that hasn't been provided in the getopts option string.

Either add the flag to the options list, or delete the case statement.

Exceptions:

None.


ShellCheck is a static analysis tool for shell scripts. This page is part of its documentation.