Created
April 2, 2022 20:07
-
-
Save transitive-bullshit/6e1e56396149cca83c12179785fe5ef1 to your computer and use it in GitHub Desktop.
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 ..='cd ..;ls' | |
alias ...='cd ../..;ls' | |
alias ....='cd ../../..;ls' | |
alias .....='cd ../../../..;ls' | |
alias ......='cd ../../../../..;ls' | |
alias .......='cd ../../../../../..;ls' | |
alias ........='cd ../../../../../../..;ls' | |
alias .........='cd ../../../../../../../..;ls' | |
alias ..........='cd ../../../../../../../../..;ls' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment