Made some clean changes.

This commit is contained in:
2015-02-19 18:29:17 -08:00
parent f7987983a4
commit e6d9a8d26e
9 changed files with 125 additions and 0 deletions

1
minecraft/REAMDE.md Normal file
View File

@ -0,0 +1 @@
Various Minecraft tweaks

View File

@ -0,0 +1,24 @@
#!/bin/bash
if [ -z "`ls | grep -v *.sh | grep SKYFALL`" ]
then
echo 'No SKYFALL Textures Detected, downloading ...';echo;
for file in $(curl -s minecraft.skyfallgames.com/current/ |
grep href |
sed 's/.*href="//' |
sed 's/".*//' |
grep '^[a-zA-Z].*'); do
echo $file; curl -# -O http://minecraft.skyfallgames.com/current/$file
done
else
echo 'SKYFALL Textures Detected, updating ...';echo;
for file in $(curl -s minecraft.skyfallgames.com/current/ |
grep href |
sed 's/.*href="//' |
sed 's/".*//' |
grep '^[a-zA-Z].*'); do
echo $file; curl -z $file -# -O http://minecraft.skyfallgames.com/current/$file
done
fi