Created
October 31, 2013 06:45
-
-
Save anonymous/7245219 to your computer and use it in GitHub Desktop.
BOOKSCANでスキャンしたPDFを全部ダウンロードしたかどうかを確認するためのスクリプト。Webページから(手動で)スクレイプした書名一覧をbookscan.txtに入れて末尾の.pdfを消す。自分のダウンロードしたファイル一覧をdropbox.txtに入れて末尾の.pdfを消す。そしてこのスクリプトを動かす。要するにファイル名中に入っているISBNを比較してるだけ。一回しか使わなかったからインタフェース適当。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bookscan = Hash.new | |
dropbox = Hash.new | |
File::open("bookscan.txt") do |f| | |
f.each do |line| | |
line.match(/_([\dX]+)$/) | |
bookscan[$1] = line | |
end | |
end | |
File::open("dropbox.txt") do |f| | |
f.each do |line| | |
line.match(/_([\dX]+)$/) | |
dropbox[$1] = line | |
end | |
end | |
bookscan.keys.each do |line| | |
if not dropbox[line] | |
puts "#{bookscan[line]}" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment