BibTeXでnocite{}を使った時に引用順にする

nocite{*}だと.bibファイルに現れた順になるので,
nocite{,}として指定する.
http://tex.stackexchange.com/questions/56634/bibtex-ordering-by-appearence-of-the-bib-file-instead-of-the-tex-file

keyはgsedで抜き出す.
http://unicus.jp/skmk/archives/315

$ cat bibliography.bib | grep @ | gsed -e 's/^.*{//g' -e 's/,//g'  \
| gsed -e ':loop; N; $!b loop; ;s/\n/,/g'