From 67b307b55b83aa3b03288e381a931cdfc05bd02d Mon Sep 17 00:00:00 2001 From: John Tsiombikas Date: Sat, 3 Feb 2024 22:08:40 +0200 Subject: [PATCH] added lbm images to the download script --- .gitignore | 12 +++++++++++- download_images | 19 +++++++++++++++++++ 2 files changed, 30 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 8a0f22a..ff3c1eb 100644 --- a/.gitignore +++ b/.gitignore @@ -3,7 +3,17 @@ *.swp images/ colcycle +*.obj *.OBJ *.EXE -*.LNK *.exe +*.LNK +*.lnk +*.lbm +*.LBM +*.ilbm +*.js +*.log +*.LOG +*.dll +releases/ diff --git a/download_images b/download_images index 4c0090f..74d89ff 100755 --- a/download_images +++ b/download_images @@ -11,3 +11,22 @@ for i in $names; do out=$(echo $i | tr '[:upper:]' '[:lower:]').js wget -O $out $url done +cd .. + +lbmnames='CORAL V01 V02 V03 V04 V05AM V05RAIN V05PM V05HAUNT V07 V08AM V08 +V08RAIN V08PM V09 V10 V11AM V12 V13 V14 V15 V16 V16RAIN V16PM V17 V18 V19 V19PM +V19AURA V20 V21 V22 V23 V24 V25 V25PM V25HEAT V26 V26SNOW V26PM V27 V28 V29 +V29FOG V29PM V30 V30RAIN ST_PLAIN2' + +mkdir -p lbmimg && cd lbmimg + +for i in $lbmnames; do + url="http://www.randelshofer.ch/animations/anims_ibm/mark_j_ferrari/${i}.LBM.zip" + if wget $url; then + name=$(echo $i | tr '[:upper:]' '[:lower:]') + unzip $i.LBM.zip + mv $i.LBM $name.lbm + rm $i.LBM.zip + fi +done +cd ..