Skip to content

Instantly share code, notes, and snippets.

@greymd
Created June 12, 2015 10:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save greymd/9f9d68f5aee96553d8f9 to your computer and use it in GitHub Desktop.
Save greymd/9f9d68f5aee96553d8f9 to your computer and use it in GitHub Desktop.
関東圏の路線の遅延情報取得シェル芸
curl -sLo- goo.gl/xEZPhi| grep info/deta -A1 | xargs | sed 's/ -- /\n/g' | grep -v 平常運転 | awk -F'[=><]' '{print $6,$5}' | while read a b; do echo -n $a":"; curl -so- $b | grep 'og:description' | grep -oP '(?<=content=").*(?=")' ;done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment