fish shell direct path code example
Example: fish shell add to path
set -Ua fish_user_paths /path/to/add
# fish_user_paths is equivilent to PATH
# -U make variable univeral
# -a append variable
set -Ua fish_user_paths /path/to/add
# fish_user_paths is equivilent to PATH
# -U make variable univeral
# -a append variable