takkaw (owner)

Revisions

gist: 6368 Download_button fork
public
Public Clone URL: git://gist.github.com/6368.git
Embed All Files: show embed
Text #
1
2
3
4
5
#DSC resizer with Ruby
Dir.glob('*.JPG') { |file|
  `convert -resize 320x240 #{file} #{file.downcase}`
}