You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Introduce some helper utilities for interacting with the $PATH environment variable. Traditionally in other shells, we would append to PATH using string formatting, resulting in potential for user error
export PATH="$PATH:some/other_path"
we should expose an interface for us to dynamically add/remove items in path and it will automatically update the corresponding environment variable.
The text was updated successfully, but these errors were encountered:
What would you like to see added?
Introduce some helper utilities for interacting with the
$PATH
environment variable. Traditionally in other shells, we would append to PATH using string formatting, resulting in potential for user errorwe should expose an interface for us to dynamically add/remove items in path and it will automatically update the corresponding environment variable.
The text was updated successfully, but these errors were encountered: