# Create a random imgur url that may or may not be valid
imgururl() {
- # 1/3% chance for length of 5, 6 or 7 length string
+ # 1/3 chance for length of 5, 6 or 7 length string
STRLN=$((5 + ${RANDOM} % 3))
local ID=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w ${STRLN} | head -n 1)
echo "http://i.imgur.com/${ID}.jpg"
testimgur() {
local URL=${1}
local RESULT=$(curl -s -o /dev/null -I -w "%{http_code}" ${URL})
- if [[ ${RESULT} == 200 ]]; then
+ if [[ ${RESULT} == "200" ]]; then
echo true
else
echo false
${BROWSER} ${URL} > /dev/null 2>&1
local FAIL=0
else
- FAIL=$(( ${FAIL}+1 ))
+ ((FAIL++))
fi
done
}