Skip to content

Instantly share code, notes, and snippets.

@izabera
Created December 31, 2017 05:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save izabera/31d93364b17fc08ff63adfd1ac6bd0f2 to your computer and use it in GitHub Desktop.
Save izabera/31d93364b17fc08ff63adfd1ac6bd0f2 to your computer and use it in GitHub Desktop.
% typeset -p path PATH
typeset -a path=( /home/izabera/bin /usr/lib64/ccache /sbin /bin /usr/sbin /usr/bin )
export PATH=/home/izabera/bin:/usr/lib64/ccache:/sbin:/bin:/usr/sbin:/usr/bin
% PATH+=:foobar
% typeset -p path PATH
typeset -a path=( /home/izabera/bin /usr/lib64/ccache /sbin /bin /usr/sbin /usr/bin foobar )
export PATH=/home/izabera/bin:/usr/lib64/ccache:/sbin:/bin:/usr/sbin:/usr/bin:foobar
% path[3]=()
% typeset -p path PATH
typeset -a path=( /home/izabera/bin /usr/lib64/ccache /bin /usr/sbin /usr/bin foobar )
export PATH=/home/izabera/bin:/usr/lib64/ccache:/bin:/usr/sbin:/usr/bin:foobar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment