2024-08-06 20:38:43 +08:00

14 lines
403 B
Plaintext
Executable File

# Shortcuts for APT/DNF/...
## The "show" is APT only, DNF has "info" instead.
## APT has alias "info" for "show", although it's not mentioned.
alias search="$pkg search"
alias list="$pkg list"
alias show="$pkg show"
alias info="$pkg info"
alias update="$pkg update"
alias upgrade="$pkg update && $pkg upgrade"
alias install="$pkg install"
alias remove="$pkg remove"
alias autoremove="$pkg autoremove"