mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-06-05 05:03:16 +02:00
Add clean options.
This commit is contained in:
parent
547a6ce260
commit
5c827c4f67
2 changed files with 4 additions and 0 deletions
|
|
@ -75,6 +75,7 @@
|
|||
| paupg | pacaur -Syua | Sync with repositories before upgrading all packages (from AUR too) |
|
||||
| pasu | pacaur -Syua --no-confirm | Same as `paupg`, but without confirmation |
|
||||
| upgrade | pacaur -Syu | Sync with repositories before upgrading packages |
|
||||
| paclean | pacaur -Sc | Clean out old files from previous versions and git files from AUR |
|
||||
|
||||
#### PACMAN
|
||||
|
||||
|
|
@ -98,6 +99,7 @@
|
|||
| pacupd | sudo pacman -Sy | Update and refresh the local package database |
|
||||
| pacupg | sudo pacman -Syu | Sync with repositories before upgrading packages |
|
||||
| upgrade | sudo pacman -Syu | Sync with repositories before upgrading packages |
|
||||
| pacclean | sudo pacman -Sc | Clean out old caches and packages |
|
||||
| pacfileupg | sudo pacman -Fy | Download fresh package databases from the server |
|
||||
| pacfiles | pacman -Fs | Search package file names for matching strings |
|
||||
| pacls | pacman -Ql | List files in a package |
|
||||
|
|
|
|||
|
|
@ -65,6 +65,7 @@ if (( $+commands[pacaur] )); then
|
|||
alias parem='pacaur -Rns'
|
||||
alias parep='pacaur -Si'
|
||||
alias pareps='pacaur -Ss'
|
||||
alias paclean='pacaur -Sc'
|
||||
alias paloc='pacaur -Qi'
|
||||
alias palocs='pacaur -Qs'
|
||||
alias palst='pacaur -Qe'
|
||||
|
|
@ -109,6 +110,7 @@ alias pacre='sudo pacman -R'
|
|||
alias pacrem='sudo pacman -Rns'
|
||||
alias pacrep='pacman -Si'
|
||||
alias pacreps='pacman -Ss'
|
||||
alias pacclean='pacman -Sc'
|
||||
alias pacloc='pacman -Qi'
|
||||
alias paclocs='pacman -Qs'
|
||||
alias pacinsd='sudo pacman -S --asdeps'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue