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"
  • bahmanm@lemmy.ml
    link
    fedilink
    English
    arrow-up
    2
    ·
    edit-2
    1 year ago
    alias et='emacsclient -ct'
    alias ec='emacsclient -cn'
    alias make='make --warn-undefined-variables'
    
  • mpiepgrass@lemmy.world
    link
    fedilink
    English
    arrow-up
    1
    ·
    edit-2
    1 year ago

    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”

    • coleman@lemmy.ml
      link
      fedilink
      English
      arrow-up
      2
      ·
      1 year ago

      My variant (u mean “up” in my head)

      alias u  ='cd ..'
      alias uu ='cd ../..'
      alias uuu='cd ../../..'
      
  • literally1848@programming.dev
    link
    fedilink
    English
    arrow-up
    1
    ·
    1 year ago

    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"
    

    }

  • Nellum@feddit.de
    link
    fedilink
    English
    arrow-up
    0
    ·
    1 year ago

    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.