Retain Bash Color Output for use in MD or HTML files.
Check for the latest release and download.
curl -L https://github.com/MikeGarde/inkwell/releases/download/latest/inkwell > /usr/local/bin/inkwell
chmod +x /usr/local/bin/inkwell
ls -la --color=always | inkwell
With output to file
COMMAND="ls -la --color"
$COMMAND | inkwell --title $COMMAND > examples/ls-wls.html
- Install Taskfile
- Install pipreqs
- Install pyinstaller
# First time setup
python3 -m venv .venv
source .venv/bin/activate
pip install pipreqs pyinstaller
pip install -r src/requirements.txt
# And make
task make
Version bumping is done using [patch, minor, major] as arguments to the release
task.
task release -- minor