Skip to content

Instantly share code, notes, and snippets.

@nyango
Created September 28, 2014 02:33
Show Gist options
  • Save nyango/5cdf7ad6fd9448cec191 to your computer and use it in GitHub Desktop.
Save nyango/5cdf7ad6fd9448cec191 to your computer and use it in GitHub Desktop.
URLの画像やページが存在するかシェル上で確認 ref: http://qiita.com/jamejammy/items/6875f80bf85d92dddef8
curl -v http://qiita.com/jamejammy/items/671a14ae2834c045fe27 2>&1 1>/dev/null | awk '{if($2~"HTTP") print}'
curl -v http://qiita.com/jamejammy/items/671a14ae2834c045fe26 2>&1 1>/dev/null | awk '{if($2~"HTTP") print}'
curl -v http://qiita.com/jamejammy/items/671a14ae2834c045fe27 2>&1 1>/dev/null | awk '{if($2~"HTTP") print $3}'
curl -v http://qiita.com/jamejammy/items/671a14ae2834c045fe26 2>&1 1>/dev/null | awk '{if($2~"HTTP") print $3}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment