2013-07-31 04:48:07 +02:00
|
|
|
#!/usr/bin/env python
|
2013-08-11 21:37:11 +02:00
|
|
|
import os
|
2013-07-31 04:48:07 +02:00
|
|
|
import sys
|
2013-08-13 12:01:06 +02:00
|
|
|
from cheatsheets import cheat_dir
|
2013-07-31 04:48:07 +02:00
|
|
|
|
2013-07-31 05:25:36 +02:00
|
|
|
# assemble a keyphrase out of all params passed to the script
|
|
|
|
keyphrase = ' '.join(sys.argv[1:])
|
|
|
|
|
2013-08-13 12:01:06 +02:00
|
|
|
# verify that the cheat directory exists
|
2013-08-11 21:37:11 +02:00
|
|
|
if not os.path.isdir(cheat_dir):
|
2013-08-13 12:01:06 +02:00
|
|
|
print >> sys.stderr, 'The cheat directory does not exist.'
|
2013-08-11 21:37:11 +02:00
|
|
|
exit()
|
|
|
|
|
2013-08-13 12:01:06 +02:00
|
|
|
# list the files in the cheat directory
|
|
|
|
cheatsheets = [f for f in os.listdir(cheat_dir) if '.' not in f]
|
2013-08-11 21:37:11 +02:00
|
|
|
cheatsheets.sort()
|
2013-08-10 05:46:34 +02:00
|
|
|
|
2013-07-31 05:33:31 +02:00
|
|
|
# print help if requested
|
2013-07-31 05:57:04 +02:00
|
|
|
if keyphrase in ['', 'help', '--help', '-h']:
|
2013-08-10 04:24:12 +02:00
|
|
|
print "Usage: cheat [keyphrase]\n"
|
|
|
|
print "Available keyphrases:"
|
2013-08-11 21:37:11 +02:00
|
|
|
print "\n".join(cheatsheets)
|
2013-07-31 05:25:36 +02:00
|
|
|
exit()
|
|
|
|
|
2013-07-31 05:33:31 +02:00
|
|
|
# print the cheatsheet if it exists
|
2013-08-11 21:37:11 +02:00
|
|
|
if keyphrase in cheatsheets:
|
2013-08-13 12:01:06 +02:00
|
|
|
cheatsheet_filename = os.path.join(cheat_dir, keyphrase)
|
|
|
|
with open(cheatsheet_filename, 'r') as cheatsheet:
|
2013-08-11 21:37:11 +02:00
|
|
|
print cheatsheet.read()
|
|
|
|
|
|
|
|
# if it does not, say so
|
|
|
|
else:
|
|
|
|
print 'No cheatsheet found.'
|