Skip to content

Instantly share code, notes, and snippets.

@onokatio
Created October 30, 2017 11:04
Show Gist options
  • Save onokatio/38d092f7025c2b22c296e83cfa8110c5 to your computer and use it in GitHub Desktop.
Save onokatio/38d092f7025c2b22c296e83cfa8110c5 to your computer and use it in GitHub Desktop.
Qiitaのfeed.atomをタイトル&urlだけにするシェル芸
cat feed.atom|grep -e "<title>" -e "<url>"|sed -e 's/^ *//'|sed -e 's/<title>//'|sed -e 's/<url>/ /'|sed -e 's/<\/title>//'|tr -d '\n'|sed -e 's/<\/url>/\n/g'|tail +2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment