Skip to content

Commit

Permalink
Add command to directly install the output of acs
Browse files Browse the repository at this point in the history
  • Loading branch information
mapc committed May 29, 2012
1 parent 1876f1d commit 0673425
Showing 1 changed file with 3 additions and 0 deletions.
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

0 comments on commit 0673425

Please sign in to comment.