All pastes #2121151 Raw Edit

Miscellany

public text v1 · immutable
#2121151 ·published 2012-02-24 02:05 UTC
rendered paste body
#!/bin/bash
#

LISTURLS="10.233.2.221"

for URL in $LISTURLS
do
  RESULT=$(curl -sSf "$URL")
  if [$? -gt 0]; then
        echo "Result is $RESULT"
  fi
done