From bash to zsh and everywhere in between, show me yours and I’ll show you mines. Inspire others or get some feedback.
Simply copy & paste the output of alias in your terminal or add some comments to explain things for others.
Edit: Kbin users, click ‘More’ on a comment and use the fediverse link to read responses that have funky formatting
Some QoL stuff my good friend set-up for me.
# ALIASES -- EXA alias ls='exa --group-directories-first --color=auto -h -aa -l --git' # ALIASES -- YAY alias yy='yay -Y --needed --norebuild --nocleanafter --nodiffmenu --noredownload --nocleanmenu --removemake --sudoloop' alias ya='yay -S --needed --norebuild --nocleanafter --nodiffmenu --noredownload --nocleanmenu --removemake --sudoloop' alias yu='yay -R --recursive --nosave' # ALIASES -- CP alias cp="cp --reflink=auto -i"
And then there’s a bunch of stuff from the output of
alias
, most of them are git aliases. Those which aren’t git-related are listed below:-='cd -' ...=../.. ....=../../.. .....=../../../.. ......=../../../../.. 1='cd -1' 2='cd -2' 3='cd -3' 4='cd -4' 5='cd -5' 6='cd -6' 7='cd -7' 8='cd -8' 9='cd -9' _='sudo ' cp='cp --reflink=auto -i' egrep='grep -E --color=auto --exclude-dir={.bzr,CVS,.git,.hg,.svn,.idea,.tox}' fgrep='grep -F --color=auto --exclude-dir={.bzr,CVS,.git,.hg,.svn,.idea,.tox}' history=omz_history l='ls -lah' la='ls -lAh' ll='ls -lh' ls='exa --group-directories-first --color=auto -h -aa -l --git' lsa='ls -lah' md='mkdir -p' rd=rmdir run-help=man which-command=whence
Good to see another exa user. Care to break down what yay does btw?
Ah, yay is an AUR helper, though I personally see it as a
pacman
helper as well. Link here. Some of the flags and options that can be used forpacman
can be used foryay
, thus, some of the flags in the aliases I use are actually forpacman
. Anyways, on to the breakdown.alias yy='yay -Y --needed --norebuild --nocleanafter --nodiffmenu --noredownload --nocleanmenu --removemake --sudoloop'
This one is what I use to look up for packages. The result of runnning
yy «search term»
would be a list of packages matching the search term and prompting the user on which package(s) to install.-Y
--needed
--norebuild
--nocleanafter
--noredownlod
--nodiffmenu
--nocleanmenu
--removemake
--sudoloop
alias ya='yay -S --needed --norebuild --nocleanafter --nodiffmenu --noredownload --nocleanmenu --removemake --sudoloop'
This one is what I use for installing packages. Useful if I already know what package I would be installing.
-S
alias yu='yay -R --recursive --nosave'
This one is what I use when uninstalling packages. I usually check the package name with something like
yay -Qi «package-name-guess»
beforehand.-R
--recursive
--sync
operation.--nosave
pacman
to ignore file backup designations. (This avoids the removed files being renamed with a.pacsave
extension.)I actually don’t know much about both
yay
andpacman
myself, since the aliases were just passed onto me by the same friend who helped me (re-)install my system (long story) and set-up the aliases. Having looked all these up, however, I might make a few changes (like changing the--nocleanafter
and--nocleanmenu
options to their clean ones`).I like the idea of binding numbers to parent directory traversal. I do cd …/… a lot in one of my projects (switching between source code and terraform folder), it’d be handy to get out of the terraform folder by just typing
2
.I actually would do
cd ..
and then do apwd
(and so on, repeatedly) because I often get confused and have a very short attention span that the aliases ended up unused.