Adding in a bootstrap file for ease of installation

Signed-off-by: Josh Cox <josh@webhosting.coop>
This commit is contained in:
Josh Cox
2022-10-03 10:19:08 -05:00
parent 2d03b3e255
commit 9285498ba6
3 changed files with 78 additions and 0 deletions

6
bin/truetool Executable file
View File

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