Skip to content

Instantly share code, notes, and snippets.

@junfenglx
Created August 16, 2015 11:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save junfenglx/4ef547e43a22523d8c1b to your computer and use it in GitHub Desktop.
Save junfenglx/4ef547e43a22523d8c1b to your computer and use it in GitHub Desktop.
Arch Linux: install needed packages at all_packages
#!/bin/bash
for p in `cat all_packages`;
do
yaourt -S $p --needed --noconfirm
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment