zsh profile aliases code example
Example: zsh create alias
// Locate your .zshrc file usually in root folder "~/.zshrc"
// Add the desired alias
alias aliasName="command"
// Reload .zshrc in orders for changes to take place
source ~/.zshrc
// Locate your .zshrc file usually in root folder "~/.zshrc"
// Add the desired alias
alias aliasName="command"
// Reload .zshrc in orders for changes to take place
source ~/.zshrc