在 Ubuntu 下看漫画
在线看不是不好,就是有时网络不快,看起来不是很爽,所以就用脚本把它下载回来打包在 zip 里再用 comix 看。用 Ruby 写了个下载的脚本。
要下载的漫画 url http://host.com/a/[001-010].jpg,脚本如下
#!/usr/bin/ruby -w('001'..'010').to_a.each do |i| url = 'http://host.com/a/' format = '.jpg' system "wget '#{url}#{i}#{format}'"end