pistolero (nprofile…9683)
I learned today that I can modify something called the PATH variable in my VSCode Terminal window and put my frequently used scripts in the place I added.
But be sure to include the previous contents of PATH to your new one, otherwise your VSCode Terminal will stop working properly.
Here's the zsh configuration:
OLD_PATH="$PATH"
PATH="/User/youruser/frequent_scripts:"$OLD_PATH""
# don't forget this
export PATH
#SysAdmin #DevOps #AlwaysLearning