9285498ba6
Signed-off-by: Josh Cox <josh@webhosting.coop>
7 lines
144 B
Bash
Executable File
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
|