انضم إلى نوستر
2026-07-22 16:24:37 UTC
in reply to

Phantasm on Nostr: pistolero I learned today that I can modify something called the PATH variable in my ...


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