You can add a biamin launcher at the bottom of your (hidden) .bashrc file that resides in your home directory, to allow you to just run “biamin” in the terminal without having to remember the full path.
$ nano ~/.bashrc
# Biamin launcher
biamin() {
/path/to/your/biamin.sh "$@"
}
CTRL+X and hit ENTER
Close the terminal and open a new one to enable the launcher. Done!