mirror of https://github.com/cheat/cheat.git
Version 2.1.3
- Added new cheatsheets - Appended to `.gitignore`
This commit is contained in:
parent
426b0aaa0d
commit
be2cb6e632
|
@ -1,2 +1,4 @@
|
||||||
*.pyc
|
*.pyc
|
||||||
|
MANIFEST
|
||||||
build
|
build
|
||||||
|
dist
|
||||||
|
|
|
@ -38,7 +38,7 @@ from docopt import docopt
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
# parse the command-line options
|
# parse the command-line options
|
||||||
options = docopt(__doc__, version='cheat 2.1.2')
|
options = docopt(__doc__, version='cheat 2.1.3')
|
||||||
|
|
||||||
# list directories
|
# list directories
|
||||||
if options['--directories']:
|
if options['--directories']:
|
||||||
|
|
|
@ -13,7 +13,8 @@ ssh -t user@example.com 'the-remote-command'
|
||||||
# To tunnel an x session over SSH:
|
# To tunnel an x session over SSH:
|
||||||
ssh -X user@example.com
|
ssh -X user@example.com
|
||||||
|
|
||||||
# Redirect traffic with a tunnel between local host (port 8080) and a remote host (remote.example.com:5000) through a proxy (personal.server.com):
|
# Redirect traffic with a tunnel between local host (port 8080) and a remote
|
||||||
|
# host (remote.example.com:5000) through a proxy (personal.server.com):
|
||||||
ssh -f -L 8080:remote.example.com:5000 user@personal.server.com -N
|
ssh -f -L 8080:remote.example.com:5000 user@personal.server.com -N
|
||||||
|
|
||||||
# To launch a specific x application over SSH:
|
# To launch a specific x application over SSH:
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -3,7 +3,7 @@ import os
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name = 'cheat',
|
name = 'cheat',
|
||||||
version = '2.1.2',
|
version = '2.1.3',
|
||||||
author = 'Chris Lane',
|
author = 'Chris Lane',
|
||||||
author_email = 'chris@chris-allen-lane.com',
|
author_email = 'chris@chris-allen-lane.com',
|
||||||
license = 'GPL3',
|
license = 'GPL3',
|
||||||
|
|
Loading…
Reference in New Issue