This file is indexed.

/usr/bin/ramaze1.9.1 is in libramaze-ruby1.9.1 2010.06.18-2.

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
12
13
14
15
#! /usr/bin/ruby1.9.1
begin
  require "pathname"
  local_ramaze = Pathname.new(__FILE__).expand_path.dirname.join("..", "lib", "ramaze.rb")
  if local_ramaze.file?
    require local_ramaze
  else
    require "ramaze"
  end
  require "ramaze/tool/bin"
rescue LoadError
  require "rubygems"
  require "ramaze/tool/bin"
end
Ramaze::Tool::Bin::Cmd.run(ARGV)