Update Utility Script authored by Derek Williams's avatar Derek Williams
this is a wonderful page
\ No newline at end of file
Assuming you have cloned the repository in the following location `/Scratch/${USER}/FreshmanRPGSuite`, you can add the following code to your `\~/.bash_profile` file in your lab machine's home directory to easily access the `frpg` utility script.
If the file is not there, please create it using the following command: `touch ~/.bash_profile`.
You do not need to modify the code to replace your username, as the terminal will replace it for you. You can simply copy-paste the code into the file.
```bash
FRPG_SCRIPT="/Scratch/${USER}/FreshmanRPGSuite/FreshmanRPG/frpg.sh"
if test -f "$FRPG_SCRIPT"; then
alias frpg="$FRPG_SCRIPT"
fi
```
## What does this code do?
It searches the computer you're on for the FreshmanRPGSuite utility script. If it finds the script, it will add a `frpg` command line alias that runs the script.
\ No newline at end of file