/usr/bin/literati is in ruby-literati 0.0.4~git.20130318.3b3ea30-1.
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 11 | #!/usr/bin/env ruby
#$:.unshift File.dirname(__FILE__) + '/../lib' if ($0 == __FILE__)
require 'literati'
if ARGV.empty?
abort "I need a filename to render!"
else
print Literati.render(File.read(ARGV.first))
end
|