Last active
November 8, 2023 19:54
-
-
Save aeinbu/326207fdabddcd730f448a1459da4bf5 to your computer and use it in GitHub Desktop.
`la` and `mkcd` commands
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias la="ls -a" | |
mkcd() { | |
mkdir $1 && cd $1 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment