Skip to content

Instantly share code, notes, and snippets.

@hyuki0000
Last active February 7, 2016 02:39
Show Gist options
  • Save hyuki0000/689550cd61c3b3707c94 to your computer and use it in GitHub Desktop.
Save hyuki0000/689550cd61c3b3707c94 to your computer and use it in GitHub Desktop.
大量のmarkdownファイルの http://img.textfile.org/https://img.textfile.org/ に書き換えるため作ったもの。
#!/usr/bin/env ruby
# encoding: utf-8
Dir.glob("source/*.md").each do |md|
open("#{md}.txt", "w") do |wf|
open(md) do |rf|
rf.readlines.each do |line|
if line.match(%r(http://img\.textfile\.org/))
line.gsub!(%r(http://img\.textfile\.org/), "https://img.textfile.org/")
end
wf.puts line
end
end
end
end
Dir.glob("source/*.md").each do |md|
system("mv \"#{md}.txt\" \"#{md}\"")
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment