Skip to content

Instantly share code, notes, and snippets.

@growtopiajaw
Created February 22, 2023 13:36
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 growtopiajaw/5696de2d545d12b97324f2a70e07ee6b to your computer and use it in GitHub Desktop.
Save growtopiajaw/5696de2d545d12b97324f2a70e07ee6b to your computer and use it in GitHub Desktop.
#! /bin/bash
set -e
mkdir growtopiajaw
cd growtopiajaw
echo
echo -e "Downloading MacOS CrossOver FOSS from github.com..."
echo
sleep 5
curl -LO "https://github.com/growtopiajaw/test/releases/download/v104.0/wine-cx21.2.0.zip"
echo -e "Unzipping MacOS CrossOver FOSS archive..."
echo
sleep 5
unzip wine-cx21.2.0.zip
rm -rf wine-cx21.2.0.zip
echo -e "Unarchiving MacOS CrossOver FOSS archive..."
echo
sleep 5
tar xvf wine-cx21.2.0.tar.gz
rm -rf wine-cx21.2.0.tar.gz
mv wine-cx21.2.0 ~/.wine-cx21.2.0
cd ..
rm -rf growtopiajaw
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment