#!/bin/sh
#
Host = ###############
Port = ####
email_id="##################"
email_sub="######"
#
if ping -q -c 5 $Host >/dev/null
then
result_host="Successful"
else
result_host="Not Successful"
fi
result_nc='nc -z $Host $Port; echo $?'
if [ $result_nc != 0 ];
then
result_port="Not Opened"
else
result_port="Opened"
fi
mesg="Ping to host was ${result_host}, Port $port is ${result_port}."
echo "$mesg"
#echo "$mesg" | mail -s "$email_sub" $email_id
Cuando uso para ejecutar el script, aparece un error. Error de sintaxis:Unexpected end of file.
Respuesta1
Intenté ejecutar eso. No recibí un error de sintaxis. De hecho, parece bastante buena en cuanto a sintaxis.
Consulte el resultado a continuación:
$ ./a.sh
./a.sh: 3: ./a.sh: Host: not found
./a.sh: 4: ./a.sh: Port: not found
Usage: ping [-aAbBdDfhLnOqrRUvV] [-c count] [-i interval] [-I interface]
[-m mark] [-M pmtudisc_option] [-l preload] [-p pattern] [-Q tos]
[-s packetsize] [-S sndbuf] [-t ttl] [-T timestamp_option]
[-w deadline] [-W timeout] [hop1 ...] destination
./a.sh: 15: [: nc: unexpected operator
Ping to host was Not Successful, Port is Opened.
Creo que quieres reemplazar las comillas en esta línea con comillas invertidas:
result_nc='nc -z $Host $Port; echo $?'
así que cámbialo a:
result_nc=`nc -z $Host $Port; echo $?`
También hay un problema de lógica (no un problema de sintaxis) con esa línea porque asigna el resultado estándar del comando a result_nc. Como sugirió Gordon, cámbielo a:
if nc -z $Host $Port
then
...
Y elimine los espacios en la tarea:
Host = ###############
Port = ####
entonces eso se convierte en:
Host=###############
Port=####
porque las tareas no funcionarán correctamente si hay espacios.
Y echa un vistazohttp://www.shellcheck.net/