This file is indexed.

/usr/bin/minitar is in ruby-minitar 0.5.4-3.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
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/usr/bin/ruby
#--
# Archive::Tar::Minitar 0.5.2
#   Copyright 2004 Mauricio Julio Ferna'ndez Pradier and Austin Ziegler
#
# This program is based on and incorporates parts of RPA::Package from
# rpa-base (lib/rpa/package.rb and lib/rpa/util.rb) by Mauricio and has been
# adapted to be more generic by Austin.
#
# It is licensed under the GNU General Public Licence or Ruby's licence.
#
# $Id$
#++

  # 1) Try to load Archive::Tar::Minitar from the gem.
  # 2) Try to load Archive::Tar::Minitar from $LOAD_PATH.
begin
  require 'rubygems'
  require_gem 'archive-tar-minitar', '= 0.5.2'
rescue LoadError
  nil
end

require 'archive/tar/minitar'
require 'archive/tar/minitar/command'

exit Archive::Tar::Minitar::Command.run(ARGV)