Last active
November 28, 2021 20:54
-
-
Save auwsom/5dadb0cf81166a1cc88d2534e9ccf72e to your computer and use it in GitHub Desktop.
This file contains 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
# unalias a | |
HISTCONTROL=ignoreboth:erasedups | |
alias rm='rm -I' | |
shopt -s histverify | |
alias h='history' | |
alias hh='history | tail -30' | |
alias rb='source ~/.bashrc' | |
alias up='cd ..' | |
alias cpr='cp -r' | |
alias j='jobs' | |
alias k='kill' | |
alias kk='kill %1' | |
alias b='bg 1' | |
alias ff='fg 1' | |
alias e='echo' | |
alias a='alias' | |
alias f='find . -iname' | |
alias g='grep' | |
alias i='help' | |
alias m='mkdir' | |
alias n='touch' | |
alias p='printenv' | |
alias pp='path' | |
alias vimbash='vim ~/.bashrc' | |
alias rebash='source ~/.bashrc' | |
export BASH=~/.bashrc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment