mirror of
https://github.com/denisidoro/navi
synced 2025-02-16 12:38:28 +00:00
21 lines
502 B
Bash
Executable file
21 lines
502 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
export SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
|
|
source "${SCRIPT_DIR}/src/main.sh"
|
|
|
|
##? Command cheatsheet tool
|
|
##?
|
|
##? Usage:
|
|
##? cheats [options]
|
|
##?
|
|
##? Options:
|
|
##? --print Prevent script execution [default: false]
|
|
##? --no-interpolation Prevent argument interpolation [default: false]
|
|
##? --no-preview Hide command preview window [default: false]
|
|
|
|
VERSION="0.6.1"
|
|
docs::eval "$@"
|
|
|
|
main "$@"
|