#!/bin/bash # test_shell.sh name="World" echo "Hello, $name" # OK unused_var="This variable is never used" # shellcheck 会警告未使用变量 if [ $name = "World" ]; then # 缺少引号,可能导致意外行为 echo "Matched" fi