Last active
September 7, 2022 04:31
-
-
Save mrjk/fdb73dc33cbc1c23e21010efc451cbdd to your computer and use it in GitHub Desktop.
minimal bashrc
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
# Base stuffs | |
alias la='ls -ah' | |
alias ll='ls -lh' | |
alias ..='cd ..' | |
alias ...='cd ../..' | |
alias ....='cd ../../..' | |
alias ~='cd ~' | |
# Sysadmin stuffs | |
alias s='sudo -i' | |
alias v='vim' | |
alias sv='sudo vim' | |
# Qwerty to Azerty Helper | |
alias cqt=cat | |
alias heqd=head | |
alias tqil=tail | |
alias vi,=vim | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment