What are your most liked alias for long commands or just to give them better names.
Mine are:
alias load="source .load.sh"
alias eload="$EDITOR .load.sh"
alias gpush="git push"
alias gadd="git add --all"
alias gcommit="git commit -m "
alias gst="git status -s"
alias gpull="git pull"
You must log in or register to comment.
alias et='emacsclient -ct' alias ec='emacsclient -cn' alias make='make --warn-undefined-variables'
become="sudo su -" pb="ansible-playbook"
dc=“docker-compose” saves me soooo much time!
alias clearswap='sudo swapoff -a && sudo swapon -a
alias reload=‘source ~/.bashrc’
scan_local() {
local_ip=$(ip addr show wlan0 | grep "inet " | awk '{print $2}' | awk -F '/' '{print $1}') sudo nmap -sn "$local_ip/24"
}
alias x=“exit”
I do this but with
xx
because I’m too scared^D
my dude.
alias gladog=“git log —all —decorate —oneline —graph” is my all time favourite. Sometimes I just want to have a quick way to see the git graph in the terminal.
In case you don’t know this give tig a try.
I didn’t. Thanks, I will have a look at it.
alias ..='cd ..'
My variant (u mean “up” in my head)
alias u ='cd ..' alias uu ='cd ../..' alias uuu='cd ../../..'