This file is indexed.

/usr/share/doc/gammu-doc/examples/backup-convertor.py is in gammu-doc 1.33.0-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
#!/usr/bin/env python

import gammu

import sys
if len(sys.argv) != 3:
    print 'This requires two parameter with file names! First is input, second output.'
    sys.exit(1)

backup = gammu.ReadBackup(sys.argv[1])
gammu.SaveBackup(sys.argv[2], backup)