Skip to content

Instantly share code, notes, and snippets.

@sasasin
Created June 30, 2023 14:14
Show Gist options
  • Save sasasin/ee15b76e4a1028f99d83866fd19c7860 to your computer and use it in GitHub Desktop.
Save sasasin/ee15b76e4a1028f99d83866fd19c7860 to your computer and use it in GitHub Desktop.
オライリージャパンで購入した電子書籍を、ブクログにISBN登録するやつ
#!/bin/bash
set -eo pipefail
# オライリージャパンで購入した電子書籍を、ブクログにISBN登録するやつ。
# https://www.oreilly.co.jp/ebook/bookshelf をウェブブラウザで開いて、全選択 & コピーして、
pbpaste \
| grep ISBN \
| sed -e 's| |\n|g' \
| grep 978 \
| sed -e 's|-||g'
# で出てきた ISBN コードのリストを https://booklog.jp/input に「ISBN コードでまとめて登録」
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment