Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enhancements for the Debian Plugin #1140

Merged
merged 2 commits into from
May 31, 2012
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Add command to directly install the output of acs
  • Loading branch information
mapc committed May 29, 2012
commit 0673425331fe997224bab9f90579c40cd14934f1
3 changes: 3 additions & 0 deletions plugins/debian/debian.plugin.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@ if [[ $use_sudo -eq 1 ]]; then
alias afu='sudo apt-file update'
alias ag='sudo $apt_pref upgrade'
alias ai='sudo $apt_pref install'
# Install all packages given on the command line while using only the first word of each line:
# acs ... | ail
alias ail="sed -e 's/ */ /g' -e 's/ *//' | cut -s -d ' ' -f 1 | "' xargs sudo $apt_pref install'
alias ap='sudo $apt_pref purge'
alias ar='sudo $apt_pref remove'

Expand Down