Skip to content

Instantly share code, notes, and snippets.

@piyushdubey
piyushdubey / extend_path.fish
Created June 16, 2016 08:20 — forked from BenAtWide/extend_path.fish
add a component to $PATH in the fish shell
# This is the syntax to add a component to $PATH in the fish shell
set -gx PATH /usr/local/mysql/bin/ $PATH
# Note the space between the new component and the existing $PATH variable.