summaryrefslogtreecommitdiffstats
path: root/navi
blob: d3b392393bee61daf81ac18f65026eb9a456ecf4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/env bash
set -euo pipefail

export SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"

source "${SCRIPT_DIR}/src/main.sh"

##? An interactive cheatsheet tool for the command-line
##?
##? Usage:
##?    cheats [command] [<args>...] [options]
##?
##? Commands:
##?    search <cmd>         Search for cheatsheets on online repositories
##?    query  <cmd>         Pre-filter results
##?
##? Options:
##?    --print              Prevent script execution
##?    --path               List of paths to look for cheats
##?    --no-interpolation   Prevent argument interpolation
##?    --no-preview         Hide command preview window
##?
##? Examples:
##?    cheats
##?    cheats --path '/some/folder:/another/folder'
##?    cheats search awk
##?    cheats search docker --print
##?    cheats query git
##?
##? More info:
##?    search               
##?       Queries cheatsheets from http://cheat.sh
##?       Please note that these cheatsheets may not work out of the box
##?       Always check the preview window before executing commands!
##?    full docs
##?       Please refer to the README at https://github.com/denisidoro/navi

VERSION="0.8.1"
opts::eval "$@"

main "$@"