sxiii

Arch - Pacman Fast-Install Aliases - Alias Bash Script

Oct 25th, 2012
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.56 KB | None | 0 0
  1. # Copyleft october 2012 by Security XIII
  2. # For Arch linux and distros with pacman onboard.
  3. # Add the following lines to the file ~/.bashrc (/yourhome/.bashrc)
  4. # and you will get possibility to search, install, remove applications and update system
  5. # very simple, like "p apache" will install apache for you.
  6.  
  7. alias s='sudo pacman -Ss' # use s to search applications
  8. alias p='sudo pacman -S' # use p to install applications
  9. alias r='sudo pacman -r' # use r to remove applications
  10. alias u='sudo pacman -Syyu' # use u to update your repos and system accordingly.
Advertisement
Add Comment
Please, Sign In to add comment