$ command line cheat sheets
Cheat Sheet Title: [ no_spaces_alphanumeric_only ]
Cheat Sheet:A bash snippet to have auto-complete for the 'cheat' gem. Use by typing : $ cheat str<tab> and get: strftime string string_unpack -------- bash script -------- function complete_cheat { COMPREPLY=() if [ $COMP_CWORD = 1 ]; then sheets=`cheat sheets | grep '^ '` COMPREPLY=(`compgen -W "$sheets" -- $2`) fi } complete -F complete_cheat cheat
Your cheat sheet will be editable (fixable) by anyone. Each cheat sheet is essentially a wiki page. It may also be used by millions of people for reference purposes from the comfort of their command line. If this is okay with you, please save.