From 8093424dbd97efdb232a2616bf36b5aebad05bbc Mon Sep 17 00:00:00 2001 From: Chris Lane Date: Fri, 9 Aug 2013 23:46:34 -0400 Subject: [PATCH] Added some notes. --- cheat | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/cheat b/cheat index 4bb2325..ecf5b94 100755 --- a/cheat +++ b/cheat @@ -7,6 +7,19 @@ keyphrase = ' '.join(sys.argv[1:]) # create a dictionary of cheatsheets cheatsheets = { +# @todo: +# - adb +# - apt-cache +# - dd +# - fdisk +# - mount +# - nc +# - rsync +# - shred +# - useradd / adduser + +# @see: http://www.thegeekstuff.com/2010/11/50-linux-commands/ + ########## bash ############################################################### 'bash' : ''' To implement a for loop: @@ -133,6 +146,8 @@ tar -cjvf /path/to/foo.tgz /path/to/foo/ } +# @todo: demonstrate some keyphrase aliases here + # print help if requested if keyphrase in ['', 'help', '--help', '-h']: cheatsheets_sorted = cheatsheets.keys()