/usr/bin/github-markup is in ruby-github-markup 1.3.3+dfsg-1build1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 | #!/usr/bin/ruby
$LOAD_PATH.unshift File.dirname(__FILE__) + "/../lib"
require 'github/markup'
if ARGV[0] && File.exists?(file = ARGV[0])
puts GitHub::Markup.render(file)
else
puts "usage: #$0 FILE"
end
|