diff options
author | Robby Russell <robby@planetargon.com> | 2012-11-25 11:38:54 -0800 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2012-11-25 11:38:54 -0800 |
commit | aaca1c25582fce211d8f94179e93d736961ea2fd (patch) | |
tree | c030e15aed961e4c3fd4803cbc07ed6f3667bceb /plugins/debian | |
parent | 802c2df7ba56e08b1befff65b31a0e2545f948d6 (diff) | |
parent | 5ff4a0030f1b29d8e45e6f1336232a81c1b93b3d (diff) | |
download | zsh-aaca1c25582fce211d8f94179e93d736961ea2fd.tar.gz zsh-aaca1c25582fce211d8f94179e93d736961ea2fd.tar.bz2 zsh-aaca1c25582fce211d8f94179e93d736961ea2fd.zip |
Merge pull request #1395 from caarlos0/master
added some maven love <3
Diffstat (limited to 'plugins/debian')
-rw-r--r-- | plugins/debian/debian.plugin.zsh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/plugins/debian/debian.plugin.zsh b/plugins/debian/debian.plugin.zsh index 39d3ef36a..71f22f7bd 100644 --- a/plugins/debian/debian.plugin.zsh +++ b/plugins/debian/debian.plugin.zsh @@ -61,7 +61,8 @@ if [[ $use_sudo -eq 1 ]]; then # Install all .deb files in the current directory. # Warning: you will need to put the glob in single quotes if you use: # glob_subst - alias di='sudo dpkg -i ./*.deb' + alias dia='sudo dpkg -i ./*.deb' + 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) \ @@ -100,7 +101,8 @@ else # Install all .deb files in the current directory # Assumes glob_subst is off - alias di='su -lc "dpkg -i ./*.deb" root' + alias dia='su -lc "dpkg -i ./*.deb" root' + 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) \ |