Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

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
Comment

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
Comment

oh my zsh custom alias

# Create custom file aliases.zsh the directory .oh-my-zsh/custom/
touch $ZSH/custom/aliases.zsh
# Edit the file you just created
vim $ZSH/custom/aliases.zsh
# Add your formatted aliases e.g:
alias g="git"
# Source the .zshrc or start a new terminal session to apply changes
source ~/.zshrc
Comment

oh my zsh add alias

nano ~/.zshrc

alias node="~/.nvm/versions/node/v16.15.1/bin/node"
Comment

PREVIOUS NEXT
Code Example
Shell :: powershell 7 install 
Shell :: git log --graph 
Shell :: react-helmet typescript 
Shell :: how to push code to github 
Shell :: move hidden files linux 
Shell :: xlsx Module ../../xlsx/types has no exported member IProperties. Did you mean Properties? 
Shell :: linux check path variable 
Shell :: trojitá ubuntu 
Shell :: unix print environment variable 
Shell :: how to stop build in heroku 
Shell :: how to install .deb file ubuntu 
Shell :: how to screenshot ubuntu 20.04 
Shell :: ubuntu epub reader 
Shell :: mkdir: /data/db: Read-only file system 
Shell :: extract tar.gz ubuntu terminal 
Shell :: install saas 
Shell :: install drupal using composer 
Shell :: git remove all local changes 
Shell :: reconnaissance in cyber security 
Shell :: files to 644 folder to 775 
Shell :: homebrew Unknown command: cask 
Shell :: create a ssh key 
Shell :: test ssh connection 
Shell :: pip uninstall package and dependencies 
Shell :: check swiftly version linux 
Shell :: install calliope on mac 
Shell :: git pull hard 
Shell :: see remote git 
Shell :: uninstall tesseract 4 
Shell :: files changed in a commit 
ADD CONTENT
Topic
Content
Source link
Name
2+8 =