Skip to content

Instantly share code, notes, and snippets.

@yusuke024
Last active August 29, 2015 14:07
Show Gist options
  • Save yusuke024/be79bd94575bc67e099b to your computer and use it in GitHub Desktop.
Save yusuke024/be79bd94575bc67e099b to your computer and use it in GitHub Desktop.
Get Hacker News feed in Shell
#!/usr/bin/env sh
curl https://hacker-news.firebaseio.com/v0/topstories.json?print=pretty | grep -o "[1-9][0-9]*" | xargs -I {} curl https://hacker-news.firebaseio.com/v0/item/{}.json?print=pretty
@yusuke024
Copy link
Author

Or just run curl -L goo.gl/lHn7j8 | sh

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment