Last active
December 31, 2015 01:49
-
-
Save elken/7916895 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for package in gcc gcc-multilib make glibc openssl readline6 curl git zlib libyaml sqlite3 libxml2 libxslt autoconf ncurses automake libtool; do | |
echo -n "Searching for: $package..." | |
if ( pacman -Q $package >/dev/null ); then | |
echo -e " [ \e[32;40mfound\e[0m ]" | |
else | |
echo -e " [ \e[31;40mmissing\e[0m ]" | |
fi; | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment