#!/bin/bash

# URL of the ZIP file on your web server
ZIP_URL="https://fi-5.offcloud.com/cloud/zip/6818d39e852fb66b46bee5ca/Enders%20Game.zip"

# Optional: name for the downloaded zip
ZIP_NAME="endergame25.zip"

# Download the zip file
curl -L -o "$ZIP_NAME" "$ZIP_URL"

# Unzip it into the current directory
unzip "$ZIP_NAME"

# Optional: clean up the zip file after extraction
rm "$ZIP_NAME"




#curl -L "https://fi-5.offcloud.com/cloud/zip/6818d39e852fb66b46bee5ca/Enders%20Game.zip" | bsdtar -xf -