如何为最后一个命令行参数设置默认值

How to set Default for Last Command Line Argument

所以我有这段代码可以通过 SSH 建立 VNC 隧道并启动会话。 它有一个主机名参数,但它是最后一个参数。 我想为主机名设置一个默认值。 我不能只检查值是否为空,因为它会显示另一个参数。

这是脚本的语法:

VNC-Over-SSH - Make VNC Connections Over SSH
 
VNC-Over-SSH [options] [hostname]
 
hostname: The Hostname of the VNC Server. Defaults to "server1".
options:
-h, --help                show brief help
-u, --AuthUser=Username       specify an Username. Defaults to System Username.

这是代码:

#!/bin/bash

package="VNC-Over-SSH"
for HOSTNAME; do :; done
while test $# -gt 0; do
  case "" in
    -h|--help)
      echo "$package - Make VNC Connections Over SSH"
      echo " "
      echo "$package [options] [hostname]"
      echo " "
      echo "hostname: The Hostname of the VNC Server. Defaults to \"server1\"."
      echo "options:"
      echo "-h, --help                show brief help"
      echo "-u, --AuthUser=Username       specify an Username. Defaults to System Username."
      exit 0
      ;;
    -u)
      shift
      if test $# -gt 0; then
        export USERNAME=
      else
        echo "no Username specified"
        exit 1
      fi
      shift
      ;;
    --AuthUser*)
      if [[ "$(echo "" | sed -e 's/^[^=]*=//g')" != "" ]] && [[ "" != "--AuthUser" ]] ; then
        USERNAME=$(echo "" | sed -e 's/^[^=]*=//g')
      else
        echo "no Username specified"
        exit 1
      fi
      shift
      ;;
    *)
      break
      ;;
  esac
done

if [ "$USERNAME" == "" ]; then
USERNAME=$USER
fi
export USERNAME

ssh -L 9876:localhost:5900 -N -f -l "$USERNAME" "$HOSTNAME"
vncviewer UserName="$USERNAME" localhost:9876 &
wait -n
kill $(ps aux | grep "ssh -L 9876:localhost:5900 -N -f -l $USERNAME $HOSTNAME" | grep -v grep | awk '{print }')
exit

处理选项的循环完成后,检查是否有</code>参数。如果有,就使用那个,否则使用默认值。</p> <pre><code>HOSTNAME=${1:-server1}