Skip to content

Instantly share code, notes, and snippets.

@matan23
matan23 / gist:7049690
Created October 18, 2013 23:23
rename file with extension
for f in *.flv; do target=`basename "$f" .flv`; echo $target; mv "$f" "$target.mp3";done;
class MyException < StandardError
def initialize(args, action_to_take)
#message d'erreur
puts 'hehe'
#on redirige ou render ou autres..
action_to_take.call
end
end
def foo