peco-nico-bgm
percolを使ってコマンドラインから出ずに聞きたいジャンルの作業用BGMを検索して再生する - Qiita
をシンプルにして、検索して選択したものをブラウザで開くだけにしてみました。
peco-nico-bgm
#!/bin/sh
TAG="作業用BGM"
if [ -n "$*" ] ; then
TAG="${TAG} $*"
fi
URLS=$(ruby -r rss -r uri -e "RSS::Parser.parse(\"http://www.nicovideo.jp/tag/\" + URI.encode(\"$TAG\") + \"?rss=2.0\").channel.items.each {|item| puts item.link + \"\t\" + item.title}" | peco | awk '{print $1}')
if [ -n "$URLS" ] ; then
open $URLS
fi
Author And Source
この問題について(peco-nico-bgm), 我々は、より多くの情報をここで見つけました https://qiita.com/yungsang/items/8fcff5920d1a19e7fcc1著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .