Last active
May 10, 2018 23:01
-
-
Save 3kynox/8a8cb5fe4c66c8733c5d1ae0b3c4e05a 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
# To install run: | |
# bash -c "$(curl -fsSL http://bit.ly/IGFWL-install)" | |
#!/bin/bash | |
FW=("kblgucver914.tar.bz2" "kbldmcver101.tar.bz2" "kblhucver02001810.tar.bz2" "sklgucver61.tar.bz2" "skldmcver126.tar.bz2" "sklhucver01071398.tar.bz2" "bxtgucver87.tar.bz2" "bxtdmcver107.tar.bz2" "bxthucver01071398.tar.bz2") | |
echo "Starting Install..." | |
mkdir fw | |
cd fw | |
for i in "${FW[@]}" | |
do | |
echo "Downloading "$i | |
wget "https://01.org/sites/default/files/downloads/intelr-graphics-linux/"$i | |
tar -xf $i | |
rm $i | |
done | |
cd .. | |
echo "Installing..." | |
for d in $(find /tmp/fw -maxdepth 1 -type d) | |
do | |
#Do something, the directory is accessible with $d: | |
cd $d | |
sudo bash install.sh | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment