cheat, command line cheat-sheet for linux

preview_player
Показать описание
cheat, command line cheat-sheet for linux

# install cheat
sudo apt-get install python python-pip git
sudo pip install docopt pygments

# check install
cheat -v

# list sheets
cheat -l

# example
cheat apt-get
cheat git

# create your own cheat sheet

# set EDITOR variable in .bashrc
echo "export EDITOR=/usr/bin/vim" ~/.bashrc

cheat -e limoes-sheet
cheat -l

# search
cheat -s branch

# show your sheet location
cheat -d

# override if you want
cp /usr/local/lib/python2.7/dist-packages/cheat/cheatsheets/tar /home/limoe/.cheat
cheat -e tar
Рекомендации по теме
Комментарии
Автор

Very nicely done, this is a great tutorial

dcsoldschool
Автор

I wish I could understand what you are doing

raulflores