This repo contains a handful of useful shell utilities. Some are shell scripts, some are compiled Swift code (see HatchTerminal).
To install shell tools, copy / paste this into your terminal
/bin/zsh -c "$(curl -fsSL https://raw.githubusercontent.com/hatch-mobile/hatch_term_tools/main/install_tools.sh)"
Refresh your environment
source ~/.zshrc`
# or restart Terminal.app
Test that the tools and path are installed:
which zing
# ~/.hatch/bin/zing
zing --version
# 2.0.3
A CLI tool to assist in creating new HatchModules
:
- Creates boilerplate folders, files
- Updates
Package.swift
with new module. - Adds default
DocC
folder, files - Adds
UnifiedLogger.swift
(a standardized wrapper foros.Logger
) - Generates starting Swift files/code.
Live.swift
,Interface.swift
, etc... - Adds starting
unit
,integration
, andUI
tests - Supports
--dry-run
(like a preview) - Written in
Swift
, easy to modify
Show help for the create
subcommand
zing create --help
To learn more, see ZING.md
echo_pretty "This works just like echo does."
echo_pretty "This works just like echo does." --red --bold "WITH " --italic --YELLOW "COLORS" --default
echo_pretty "Even with " --blink "blinking urls" --cyan --underline "https://github.com" --default
Modeled from echo
, but supports ANSI colors, cursor controls, etc... Compiled Swift code. Much faster than echo_ansi
, but bigger in size.
Modeled after echo
, but supports ANSI colors. Written as shell script. Slower than echo_pretty
.
A utility for logging from other shell scripts. Compiled Swift code Compiled Swift code.
# Use the install script to clean up
./install_tools.sh --mode=uninstall
# delete PATH lines from .zshrc
first_line=$(grep -n "# This section added by /bin/zsh" ~/.zshrc | cut -d ":" -f 1 | head -n 1)
second_line=$((first_line+1))
if [[ "$first_line" == "" || "$second_line" == "" ]]; then
return 1
fi
sed -i '' -e "${first_line},${second_line}d" ~/.zshrc
# Reload env/path
echo "before: $PATH"
export PATH=$(echo "$PATH" | sed -e "s|$HATCH_TOOLS_DIR||g")
echo "after: $PATH"
source ~/.zshrc
# delete hatch tools dir
HATCH_TOOLS_DIR="$HOME/bin/hatch"
rm -rf "$HATCH_TOOLS_DIR"