/usr/bin/whisper-info is in python-whisper 0.9.10-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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | #!/usr/bin/python
import sys, os
import whisper
from optparse import OptionParser
option_parser = OptionParser(usage='''%prog path [field]''')
(options, args) = option_parser.parse_args()
if len(args) < 1:
option_parser.print_usage()
sys.exit(1)
path = args[0]
if len(args) > 1:
field = args[1]
else:
field = None
info = whisper.info(path)
info['fileSize'] = os.stat(path).st_size
if field:
if field not in info:
print 'Unknown field "%s". Valid fields are %s' % (field, ','.join(info))
sys.exit(1)
print info[field]
sys.exit(0)
archives = info.pop('archives')
for key,value in info.items():
print '%s: %s' % (key,value)
print
for i,archive in enumerate(archives):
print 'Archive %d' % i
for key,value in archive.items():
print '%s: %s' % (key,value)
print
|