Created
February 22, 2023 13:36
-
-
Save growtopiajaw/5696de2d545d12b97324f2a70e07ee6b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /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