move to truetool folder

This commit is contained in:
Kjeld Schouten-Lebbing
2023-03-16 09:47:07 +01:00
parent 9d41ae3875
commit 8ac7f0fb9c
26 changed files with 21 additions and 0 deletions

6
truetool/bin/truetool Normal 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