Skip to content

Instantly share code, notes, and snippets.

@orientalperil
Last active May 3, 2026 20:26
Show Gist options
  • Select an option

  • Save orientalperil/2f0a49823240b6b1a4335347f0657b52 to your computer and use it in GitHub Desktop.

Select an option

Save orientalperil/2f0a49823240b6b1a4335347f0657b52 to your computer and use it in GitHub Desktop.
Debian Bash Aliases
# 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 ../../../..'
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