Skip to content

Latest commit

 

History

History
36 lines (24 loc) · 640 Bytes

README.md

File metadata and controls

36 lines (24 loc) · 640 Bytes

Bash shell scripts used for Unix as an IDE.

Scripts

  • cheat-ledger.sh: Print cheatsheet for Ledger CLI in terminal.

Installation

: make install
  • Manaully install a specific script
: export SCRIPT="$HOME/.local/bin"

# Setup script environment
: mkdir -p $SCRIPT

# Install specific script
: ln -sf $PWD/[SCRIPT_NAME] $SCRIPT/[SCRIPT_NAME].sh

# Clean scripts installed
: rm -rf $SCRIPT
  • When writting a new script.
# Linking
shellcheck [script].sh

# Formatting
shfmt [script].sh