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"
alias ll=“ls - l”
My most-used, by far, for decades.
For just a second I thought this was Loss
alias ..='cd ..'
My variant (u mean “up” in my head)
alias u ='cd ..' alias uu ='cd ../..' alias uuu='cd ../../..'
alias et='emacsclient -ct' alias ec='emacsclient -cn' alias make='make --warn-undefined-variables'
alias upd=“yay -Syu --devel”
alias cleanup=“yay -Qdtq | yay -Rns-”
alias mirror=“sudo reflector --verbose --country ‘United States’ --protocol https --latest 15 --sort rate --save /etc/pacman.d/mirrorlist && sudo eos-rankmirrors”
alias x=“exit”
I do this but with
xx
because I’m too scared
dc=“docker-compose” saves me soooo much time!
alias clearswap='sudo swapoff -a && sudo swapon -a' alias grep='grep --color=auto' alias ls='ls --color=auto --group-directories-first' alias la='ls -lAh --color=auto --group-directories-first' alias timestamp='date +%Y-%m-%dT%H-%M-%S'
alias gecko=“echo”
Oh why that?
Purely for fun
That’s always the best fun
Quite basic but saves me a couple of seconds each time. alias update=“sudo apt update && sudo apt upgrade -y && sudo apt autoremove -y && sudo apt autoclean -y”
TTIME (abbr - not alias)
abbr -a -- ttime date\ \'+It\ is\ \%-H\ \%M\ and\ \%S\ seconds\'\|espeak\ \>/dev/null\ 2\>/dev/null # imported from a universal variable, see `help abbr`
alias fuck='sudo $(fc -ln -1)'
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 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.
Uhhh a terminal git user too
Since my company won’t pay for Gitkraken I sadly am :/
In case you don’t know this give tig a try.
I didn’t. Thanks, I will have a look at it.
alias ein='f() { sudo emerge -av $1 };f' alias eup='sudo emerge -avuDN @world'
mkcd() { mkdir -p “$1” && cd “$1”; }
Make a directory and immediately cd into it. I rarely make a directory and not cd into it.
Uuuuh needed this one so many times.
My app keeps crashing. That’s the older version of my alias.
mkcd() { mkdir -p “$1” && cd “$1”; }