Answers for "how to update alias in linux"

1

how to update alias in linux

vi ~/.bashrc
# add below lines in the file
alias l="ls -al"

#close the vim editor and run below command
source ~/.bashrc
Posted by: Guest on March-17-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language