scale-catalog/bin/truetool
Josh Cox 9285498ba6 Adding in a bootstrap file for ease of installation
Signed-off-by: Josh Cox <josh@webhosting.coop>
2022-10-03 11:09:28 -05:00

7 lines
144 B
Bash
Executable File

#!/bin/bash
orig_cwd=$(pwd)
cd "$HOME/truetool" || exit
# pass all arguments '$@' to truetool.sh
bash ./truetool.sh "$@"
cd "$orig_cwd" || exit