Skip to content

Instantly share code, notes, and snippets.

@youz
Created June 19, 2014 04:16
Show Gist options
  • Save youz/1034f18e39c5cff6e360 to your computer and use it in GitHub Desktop.
Save youz/1034f18e39c5cff6e360 to your computer and use it in GitHub Desktop.
Param(
[parameter(Mandatory=$true)]
[String]$tag
)
$OutputEncoding = [System.Text.Encoding]::UTF8
irm "http://qiita.com/tags/$tag/feed" | %{$_.title + "`0" + $_.url} | peco --null | %{start $_}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment