This file is indexed.

/usr/bin/amp-compress is in python3-amp 0.6-3.

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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#! /usr/bin/python3
"""Tool to compress Amp FileDatabase objects."""

import os
from optparse import OptionParser

from amp.utilities import FileDatabase


def compress_file(filename):
    filename = filename.rstrip(os.path.sep)
    assert filename.endswith('.ampdb')
    assert 'loose' in os.listdir(filename)
    FileDatabase(filename).archive()


def parser():
    parser = OptionParser(
        usage='usage: %prog [options] [filename(s)]\n Compress .ampdb'
              ' files(Amp FileDatabase objects).')
    add = parser.add_option
    add('-r', '--recursive', action='store_true',
        default=False, help='recursively search and compress .ampdb files')
    options, args = parser.parse_args()
    return options, args


options, args = parser()

if not options.recursive:
    for filename in args:
        compress_file(filename)
else:
    if len(args) != 1:
        raise AssertionError('A single argument (top directory) must be '
                             'supplied with the recursive option.')
    topdir = args[0]
    if not os.path.isdir(topdir):
        raise AssertionError('Argument must be a path with recursive option.')

    for dirpath, dirnames, filenames in os.walk(topdir):
        for dirname in dirnames:
            if dirname.endswith('.ampdb'):
                filename = os.path.join(dirpath, dirname)
                print('Found %s.' % filename)
                compress_file(filename)