Answers for "how to add a custom zsh aliases"

2

how to add a custom zsh aliases

# Create a custom file for aliases.zsh
touch $ZSH/custom/aliases.zsh
# write your zsh aliases in this file
vim $ZSH_CUSTOM/aliases.zsh
# Add the your alias
alias aliasName="command"
# source or simply restart your Terminal for updates
source ~/.zshrc
Posted by: Guest on January-29-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language