Last active
May 3, 2026 20:26
-
-
Save orientalperil/2f0a49823240b6b1a4335347f0657b52 to your computer and use it in GitHub Desktop.
Debian Bash Aliases
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
| # Enable bash history | |
| bind '"\e[A": history-search-backward' | |
| bind '"\e[B": history-search-forward' | |
| # general aliases | |
| alias l="ls -lhaF" | |
| alias u='cd ..' | |
| alias uu='cd ../..' | |
| alias uuu='cd ../../..' | |
| alias uuuu='cd ../../../..' |
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
| wget --quiet --output-document ~/.bash_aliases https://gist.githubusercontent.com/orientalperil/2f0a49823240b6b1a4335347f0657b52/raw/6720f2554071c7c57a0acfd63741c643d572a2fa/.bash_aliases.sh && \ | |
| echo '[ -f ~/.bash_aliases ] && source ~/.bash_aliases' >> ~/.bashrc && \ | |
| source ~/.bash_aliases && \ | |
| echo "✅ Aliases loaded successfully!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment