You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
368 B
17 lines
368 B
#!/bin/bash
|
|
source fnc_gonzy.sh
|
|
|
|
function fnc_principal(){
|
|
fnc_gonzy_intro "URL_Verificar" "Verifica que URL exista."
|
|
|
|
echo -e ""
|
|
if wget --spider -S "$1" 2>&1 | grep -w "200\|301"; then
|
|
fnc_msg_color 1 "URL activo"
|
|
else
|
|
fnc_msg_color 0 "URL caído"
|
|
fi
|
|
echo ""
|
|
}
|
|
|
|
read -p "URL a validar: " url_validar;
|
|
fnc_principal $url_validar
|
|
|