This file is indexed.

/usr/lib/python2.7/dist-packages/cmd2-0.7.9.egg-info/PKG-INFO is in python-cmd2 0.7.9-0ubuntu1.

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
 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
47
48
49
50
51
52
53
54
55
56
57
58
Metadata-Version: 1.1
Name: cmd2
Version: 0.7.9
Summary: cmd2 - a tool for building interactive command line applications in Python
Home-page: https://github.com/python-cmd2/cmd2
Author: Catherine Devlin
Author-email: catherine.devlin@gmail.com
License: MIT
Description-Content-Type: UNKNOWN
Description: cmd2 is a tool for building interactive command line applications in Python. Its goal is to make 
        it quick and easy for developers to build feature-rich and user-friendly interactive command line applications.  It 
        provides a simple API which is an extension of Python's built-in cmd module.  cmd2 provides a wealth of features on top 
        of cmd to make your life easier and eliminates much of the boilerplate code which would be necessary when using cmd.
        
        The latest documentation for cmd2 can be read online here:
        https://cmd2.readthedocs.io/
        
        Main features:
        
            - Searchable command history (`history` command and `<Ctrl>+r`)
            - Text file scripting of your application with `load` (`@`) and `_relative_load` (`@@`)
            - Python scripting of your application with ``pyscript``
            - Run shell commands with ``!``
            - Pipe command output to shell commands with `|`
            - Redirect command output to file with `>`, `>>`; input from file with `<`
            - Bare `>`, `>>` with no filename send output to paste buffer (clipboard)
            - `py` enters interactive Python console (opt-in `ipy` for IPython console)
            - Multi-line, case-insensitive, and abbreviated commands
            - Special-character command shortcuts (beyond cmd's `@` and `!`)
            - Settable environment parameters
            - Parsing commands with flags
            - Unicode character support (*Python 3 only*)
            - Good tab-completion of commands, file system paths, and shell commands
            - Python 2.7 and 3.4+ support
            - Linux, macOS and Windows support
            - Trivial to provide built-in help for all commands
            - Built-in regression testing framework for your applications (transcript-based testing)
        
        Usable without modification anywhere cmd is used; simply import cmd2.Cmd in place of cmd.Cmd.
        
Keywords: command prompt console cmd
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Libraries :: Python Modules