This file is indexed.

/usr/lib/ruby/vendor_ruby/specinfra/command/darwin/base/process.rb is in ruby-specinfra 2.66.0-1.

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
class Specinfra::Command::Darwin::Base::Process < Specinfra::Command::Base::Process
  class << self
    def get(process, opts)
      "ps -A -c -o #{opts[:format]},command | grep -E -m 1 ^\\ *[0-9]+\\ +#{escape(process)}$ | awk '{print $1}'"
    end
  end
end