Egregoros

Signal feed

Timeline

Post

Remote status

Context

3

@p 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

Replies

0
No replies yet.