Skip to content

Instantly share code, notes, and snippets.

@3kynox
Last active May 10, 2018 23:01
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 3kynox/8a8cb5fe4c66c8733c5d1ae0b3c4e05a to your computer and use it in GitHub Desktop.
Save 3kynox/8a8cb5fe4c66c8733c5d1ae0b3c4e05a to your computer and use it in GitHub Desktop.
# 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