This file is indexed.

/usr/share/doc/ruby1.8-examples/examples/drb/drbmc.rb is in ruby1.8-examples 1.8.7.352-2ubuntu1.6.

This file is owned by root:root, with mode 0o644.

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
16
17
18
19
20
21
22
=begin
  multiple DRbServer client
 	Copyright (c) 1999-2002 Masatoshi SEKI 
=end

require 'drb/drb'

if __FILE__ == $0
  s1 = ARGV.shift
  s2 = ARGV.shift
  unless s1 && s2
    $stderr.puts("usage: #{$0} <server_uri1> <server_uri2>")
    exit 1
  end

  DRb.start_service()
  r1 = DRbObject.new(nil, s1)
  r2 = DRbObject.new(nil, s2)

  p [r1.hello, r1.hello.to_s]
  p [r2.hello, r2.hello.to_s]
end