Skip to content

Instantly share code, notes, and snippets.

@satour
Created October 16, 2018 05:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save satour/49a463aaa981da7434db696a815972cf to your computer and use it in GitHub Desktop.
Save satour/49a463aaa981da7434db696a815972cf to your computer and use it in GitHub Desktop.
unless ARGV[0]
puts "Please specify file(s)."
exit
end
ARGV.each{|f|
unless f.index("md") || f.index("markdown")
puts "ERR: Bad file extention: #{f}"
puts "Only *.md or *.markdown will be accepted."
exit
end
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment