All pastes #2121159 Raw Edit

Miscellany

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

listurls=(10.233.2.221)

for url in "${listurls[@]}"
do
  if result=$(curl -sSf "$url")
  then
    printf 'Result is %s\n' "$result"
  fi
done