Thanks @kevinushey! Do you have any suggestions on how to best modify the PATH accessible via a bash command through RMarkdown so it is permanently updated?
For example, if I run the following in a single RMarkdown code block my $PATH is correctly appended with the new location.
# path updated
echo $PATH
export PATH=$PATH:/Users/botwing/my_new_path
echo $PATH
But if I try to run the following in two RMarkdown code-blocks, my $PATH is not updated.
echo $PATH
export PATH=$PATH:/Users/botwing/my_new_path
Then...
# not updated
echo $PATH
Any ideas on how to permanently, or at least per RStudio session, to modify the accessible $PATH?
Thanks,
Greg