diff --git a/quickget b/quickget index 783e7e2..0659ac3 100755 --- a/quickget +++ b/quickget @@ -1248,7 +1248,8 @@ function web_get() { echo "${URL}" exit 0 elif [ "${just}" == 'test' ]; then - wget --spider "${URL}" + echo -n "Testing if $(echo "${URL}" | rev | cut -d'/' -f1 | rev) is available... " + wget -q --spider "${URL}" && echo 'Sucessfull' || echo 'ERROR!' exit 0 elif [ "${just}" == 'download' ]; then DIR="$(pwd)"