I needed to convert webp images to png (for OkCupid)
`ls`.split.filter{|it| it.end_with? ".webp"}.each {|it| `dwebp #{it} -o #{it}.png`}`
was really easy to write
example