Skip to content

Instantly share code, notes, and snippets.

@youz
Created June 26, 2014 08:55
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 youz/b51e1c3ac1bf3338657d to your computer and use it in GitHub Desktop.
Save youz/b51e1c3ac1bf3338657d to your computer and use it in GitHub Desktop.
powershellから達人出版会の新刊をpecoで選ぶやつ
param([switch] $All)
$OutputEncoding = [System.Text.Encoding]::UTF8
$c = if ($All) { "all" } else { "new" }
irm "http://tatsu-zine.com/catalogs/$c.opds" |
%{$_.title + "`0" + ($_.link | where {$_.rel -Match "/buy"}).href} |
peco --null |
%{start $_}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment