Skip to content

Instantly share code, notes, and snippets.

@Rob117
Created May 20, 2017 14:24
Show Gist options
  • Save Rob117/39dde22d41411c255fa6bbcedab92ac9 to your computer and use it in GitHub Desktop.
Save Rob117/39dde22d41411c255fa6bbcedab92ac9 to your computer and use it in GitHub Desktop.
Convert files in directories into aggregated pdfs
Dir['*'].each do |d|
Dir.chdir(d){`convert * #{d}.pdf`} if File.directory? d
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment