1

我一直在努力解决这个问题。想看看我做错了什么,这可能是我的全部。我正在ping一个IP,然后当它下降或上升时,它会发送通知。我的问题是getops。我正在使用它来尝试解析电子邮件地址和 IP。这些都没有被解析。如何使用 getopts 解析我的两个变量,我需要让我的脚本正常运行。先感谢您 :)

#!/bin/bash
# Variable(s)
# --------
EMAIL_DOWN_SENT="0";
EMAIL_UP_SENT="0";
PING_FAILED="0";
PING_UP_AGAIN="0";

# FUNctions
# ---------
# 
# Echo a string value that is passed
echo_text() {
   echo -e >&2 "$@";
}

echo_help() {
echo_text "Usage: $(basename "$0") [-e] [EMAIL][-h] [-i] [IP]\n\nScript to ping ip address to see if it's up and send an alert on status changes.\n
        -e Enter email: user@domain.tld
        -h This help screen
        -i IP to ping";
   exit;
}

# Main body
# ---------
#
# Get command line options
# ------------------------
while getopts ":e:hi:" OPTIONS 
do
  case $OPTIONS in
     e) EMAIL=$OPTARGS ;;
  h|\?) echo_help ;;
     i) IP= $OPTARGS | grep -E '[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}'; if [ "$?" != "0" ]; then echo_text "Please enter a valid IP"; exit 1; fi; ;;
     *) echo_text "$OPTARGS is invalid, try again";
        exit 1 ;;
  esac
  shift $((OPTIND-1))
done
echo_text "Your email is: $EMAIL";
echo_text "Your ip to ping is: $IP";

# Ping me
# -------
trap "echo You hit ctrl-c, now exiting..; exit" SIGINT
while :
do
   ping -i 2 -c 2 $IP > /dev/null
   if [ $? -ne 0 ]; then
      let PING_DOWN+=1
      echo_text "Down! Abandon all hope who enter here...";
      PING_FAILED="1";
      # If greater than 3 cycles send an email...
      if [[ $PING_DOWN -ge 3 && $EMAIL_DOWN_SENT -eq 0 ]]; then
         echo "$IP Down!"|mutt -s "Ping Failed!" $EMAIL;
         EMAIL_DOWN_SENT="1";
      fi
   else
      let PING_UP+=1
      echo_text "Up! Ahoy! Host alive!";
      # If greater than 3 cycles send an email...
      if [[ $PING_UP -ge 3 && $EMAIL_UP_SENT -eq 0 && $PING_FAILED -eq 1 ]]; then
         echo "$IP up!"|mutt -s "Ping succeeded!" $EMAIL;
         EMAIL_UP_SENT="1";
         PING_UP_AGAIN="1";
      fi
      # Reset checks
      if [ $PING_UP_AGAIN -eq 1 ]; then
         PING_FAILED="0";
         PING_UP="0";
         PING_DOWN="0";
         EMAIL_UP_SENT="0";
         EMAIL_DOWN_SENT="0";
      fi
   fi
done

if [ ! `echo "$OPTARG" | grep -qE '[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}'` ]; then
    echo_text "Please enter a valid IP"
    exit 1
fi
IP="$OPTARG"
4

3 回答 3

1

您的脚本中有两个主要错误:

首先,是$OPTARG,不是$OPTARGS

第二,

IP= $OPTARGS | grep -E '[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}';

你不能这样做。将整个段落更改为以下内容

if ! echo "$OPTARG" | grep -qE '[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}'; then
    echo_text "Please enter a valid IP"
    exit 1
fi
IP="$OPTARG"

还值得注意的是,除非您使用的是 Ancient ,否则您bash的 shell 应该有一个=~运算符(请参见此处),您可以将外部替换为grep

使用时,运算符右侧的字符串被视为扩展正则表达式并进行相应匹配(如在 regex3 中)。如果字符串与模式匹配,则返回值为 0,否则为 1。

于 2013-04-21T08:30:40.473 回答
1

除了 Adrian Frühwirth 指出的问题之外,您还需要将 shift 命令移到循环之后。您编写它的方式getopts是在解析脚本的同时删除脚本的参数,这会使事情完全混淆。

while getopts ":e:hi:" OPTIONS 
do
    ...
done
shift $((OPTIND-1))  # This must be after the "done"
于 2013-04-21T16:39:30.907 回答
-1

尝试用 "" 将 $OPTARGS 括起来:

e) EMAIL="$OPTARGS" ;;

于 2013-04-21T14:16:05.203 回答