Fixed some more.

This commit is contained in:
2015-02-19 18:30:34 -08:00
parent e6d9a8d26e
commit 42f6a21d44
3 changed files with 0 additions and 116 deletions

View File

@ -1,24 +0,0 @@
#!/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