diff options
author | Hauke Stange <hauke@jimdo.com> | 2012-11-28 10:40:09 +0100 |
---|---|---|
committer | Hauke Stange <hauke@jimdo.com> | 2012-11-28 10:40:09 +0100 |
commit | 12f416b125501e9faaae061bc55b833158348156 (patch) | |
tree | 623ca0c73f0dd6a42785e8b1e0cceede4f9b4494 /plugins/debian | |
parent | 5d6252c6d0e3598f2e19b9a02f7eb8a49317b1f1 (diff) | |
parent | 3d7622831fd86a3eaf4bbe3a11102929716d3781 (diff) | |
download | zsh-12f416b125501e9faaae061bc55b833158348156.tar.gz zsh-12f416b125501e9faaae061bc55b833158348156.tar.bz2 zsh-12f416b125501e9faaae061bc55b833158348156.zip |
Merge branch 'master' of github.com:Partyschaum/oh-my-zsh
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) \ |