This repository contains various shell scripting snippets. Great for recalling basic syntaxes while writing shell scripts.
It also includes a dev setup for zsh
(aliases, functions, etc).
This is the order in which these files get read. Keep in mind that it reads first from the system-wide file (i.e. /etc/zshenv
) then from the file in your home directory (~/.zshenv
) as it goes through the following order:
.zshenv
→ .zprofile
→ .zshrc
→ .zlogin
→ .zlogout
Details - What should/shouldn't go in .zshenv, .zshrc, .zlogin, .zprofile, .zlogout?