A CLI tool that lets you save your most used CLI commands easily.
# Clone repo
git clone https://github.com/Reljod/getitdone.git && cd getitdone
# Install binary via go
go install
# Check usage
getitdone -hgetitdone save "<name>"getitdone save "<name>" "node server.js" # or
getitdone save "<name>" 'cat hello.txt | grep "world"'getitdone ls
# <name> - <command>
# command1 => node server.js
# command2 => cat hello.txt | grep "world"getitdone command1
# Runs: node server.js