Revert "feat(archlinux): add cleanup aliases to `yaourt` and `yay` (#10184)"

This reverts commit eba3be24.
parent 16de5140
...@@ -143,8 +143,6 @@ upgrades were available. Use `pacman -Que` instead. ...@@ -143,8 +143,6 @@ upgrades were available. Use `pacman -Que` instead.
| yaupd | `yaourt -Sy` | Update and refresh local package, ABS and AUR databases | | yaupd | `yaourt -Sy` | Update and refresh local package, ABS and AUR databases |
| yaupg | `yaourt -Syua` | Sync with repositories before upgrading all packages (from AUR too) | | yaupg | `yaourt -Syua` | Sync with repositories before upgrading all packages (from AUR too) |
| yasu | `yaourt -Syua --no-confirm` | Same as `yaupg`, but without confirmation | | yasu | `yaourt -Syua --no-confirm` | Same as `yaupg`, but without confirmation |
| yaclun | `yaourt -Yc` | Remove unneeded installed packages |
| yaclf | `yaourt -Scc` | Remove cache directories |
| upgrade[²](#f2) | `yaourt -Syu` | Sync with repositories before upgrading packages | | upgrade[²](#f2) | `yaourt -Syu` | Sync with repositories before upgrading packages |
#### Yay[¹](#f1) #### Yay[¹](#f1)
...@@ -167,8 +165,6 @@ upgrades were available. Use `pacman -Que` instead. ...@@ -167,8 +165,6 @@ upgrades were available. Use `pacman -Que` instead.
| yaupd | `yay -Sy` | Update and refresh local package, ABS and AUR databases | | yaupd | `yay -Sy` | Update and refresh local package, ABS and AUR databases |
| yaupg | `yay -Syu` | Sync with repositories before upgrading packages | | yaupg | `yay -Syu` | Sync with repositories before upgrading packages |
| yasu | `yay -Syu --no-confirm` | Same as `yaupg`, but without confirmation | | yasu | `yay -Syu --no-confirm` | Same as `yaupg`, but without confirmation |
| yaclun | `yay -Yc` | Remove unneeded installed packages |
| yaclf | `yay -Scc` | Remove cache directories |
| upgrade[²](#f2) | `yay -Syu` | Sync with repositories before upgrading packages | | upgrade[²](#f2) | `yay -Syu` | Sync with repositories before upgrading packages |
--- ---
......
...@@ -170,8 +170,6 @@ if (( $+commands[yaourt] )); then ...@@ -170,8 +170,6 @@ if (( $+commands[yaourt] )); then
alias yainsd='yaourt -S --asdeps' alias yainsd='yaourt -S --asdeps'
alias yamir='yaourt -Syy' alias yamir='yaourt -Syy'
alias yaupd="yaourt -Sy" alias yaupd="yaourt -Sy"
alias yaclun='yaourt -Yc'
alias yaclf='yaourt -Scc'
alias upgrade='yaourt -Syu' alias upgrade='yaourt -Syu'
fi fi
...@@ -192,8 +190,6 @@ if (( $+commands[yay] )); then ...@@ -192,8 +190,6 @@ if (( $+commands[yay] )); then
alias yainsd='yay -S --asdeps' alias yainsd='yay -S --asdeps'
alias yamir='yay -Syy' alias yamir='yay -Syy'
alias yaupd="yay -Sy" alias yaupd="yay -Sy"
alias yaclun='yay -Yc'
alias yaclf='yay -Scc'
alias upgrade='yay -Syu' alias upgrade='yay -Syu'
fi fi
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment