mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-02-20 03:02:29 +01:00
Improved kclean command
The original kclean returned 'zsh: no matches found: ' so I optimized it a little, now it should work in a majority of machines.
This commit is contained in:
parent
1b7a3ea99a
commit
737c39d860
1 changed files with 6 additions and 5 deletions
|
|
@ -66,9 +66,9 @@ if [[ $use_sudo -eq 1 ]]; then
|
|||
alias di='sudo dpkg -i'
|
||||
|
||||
# Remove ALL kernel images and headers EXCEPT the one in use
|
||||
alias kclean='sudo aptitude remove -P ?and(~i~nlinux-(ima|hea) \
|
||||
?not(~n`uname -r`))'
|
||||
|
||||
alias kclean='sudo aptitude remove -P "?and(~i~nlinux-(ima|hea),\
|
||||
?not(?or(~n`uname -r | cut -d'\''-'\'' -f-2`,\
|
||||
~n(linux-(virtual|headers-virtual|headers-generic|image-virtual|image-generic)))))"'
|
||||
|
||||
# commands using su #########
|
||||
else
|
||||
|
|
@ -106,8 +106,9 @@ else
|
|||
alias di='su -lc "dpkg -i" root'
|
||||
|
||||
# Remove ALL kernel images and headers EXCEPT the one in use
|
||||
alias kclean='su -lc '\''aptitude remove -P ?and(~i~nlinux-(ima|hea) \
|
||||
?not(~n`uname -r`))'\'' root'
|
||||
alias kclean='su -lc '\''aptitude remove -P "?and(~i~nlinux-(ima|hea),\
|
||||
?not(?or(~n`uname -r | cut -d'\''-'\'' -f-2`,\
|
||||
~n(linux-(virtual|headers-virtual|headers-generic|image-virtual|image-generic)))))"'\'' root'
|
||||
fi
|
||||
|
||||
# Completion ################################################################
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue