2014-04-27 05:31:13 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
"""cheat
|
|
|
|
|
2017-02-28 05:09:51 +01:00
|
|
|
Create and view cheatsheets on the command line.
|
|
|
|
|
2014-04-27 05:31:13 +02:00
|
|
|
Usage:
|
|
|
|
cheat <cheatsheet>
|
|
|
|
cheat -e <cheatsheet>
|
|
|
|
cheat -s <keyword>
|
|
|
|
cheat -l
|
|
|
|
cheat -d
|
|
|
|
cheat -v
|
|
|
|
|
|
|
|
Options:
|
|
|
|
-d --directories List directories on CHEATPATH
|
|
|
|
-e --edit Edit cheatsheet
|
|
|
|
-l --list List cheatsheets
|
|
|
|
-s --search Search cheatsheets for <keyword>
|
|
|
|
-v --version Print the version number
|
2017-02-28 05:09:51 +01:00
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
|
|
|
To view the `tar` cheatsheet:
|
|
|
|
cheat tar
|
|
|
|
|
|
|
|
To edit (or create) the `foo` cheatsheet:
|
|
|
|
cheat -e foo
|
|
|
|
|
|
|
|
To list all available cheatsheets:
|
|
|
|
cheat -l
|
|
|
|
|
|
|
|
To search for "ssh" among all cheatsheets:
|
|
|
|
cheat -s ssh
|
2014-04-27 05:31:13 +02:00
|
|
|
"""
|
|
|
|
|
|
|
|
# require the dependencies
|
2016-07-19 13:37:18 +02:00
|
|
|
from cheat import sheets, sheet
|
|
|
|
from cheat.utils import colorize
|
2014-04-27 05:31:13 +02:00
|
|
|
from docopt import docopt
|
|
|
|
|
|
|
|
|
2015-10-16 00:56:34 +02:00
|
|
|
if __name__ == '__main__':
|
2014-04-27 05:31:13 +02:00
|
|
|
# parse the command-line options
|
2017-03-01 00:59:27 +01:00
|
|
|
options = docopt(__doc__, version='cheat 2.2.0')
|
2014-04-27 05:31:13 +02:00
|
|
|
|
|
|
|
# list directories
|
|
|
|
if options['--directories']:
|
|
|
|
print("\n".join(sheets.paths()))
|
|
|
|
|
|
|
|
# list cheatsheets
|
|
|
|
elif options['--list']:
|
|
|
|
print(sheets.list())
|
|
|
|
|
|
|
|
# create/edit cheatsheet
|
|
|
|
elif options['--edit']:
|
|
|
|
sheet.create_or_edit(options['<cheatsheet>'])
|
|
|
|
|
|
|
|
# search among the cheatsheets
|
|
|
|
elif options['--search']:
|
|
|
|
print(colorize(sheets.search(options['<keyword>'])))
|
|
|
|
|
|
|
|
# print the cheatsheet
|
|
|
|
else:
|
|
|
|
print(colorize(sheet.read(options['<cheatsheet>'])))
|