2021-10-20 11:06:03 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
####################################################################################################
|
|
|
|
|
# Name: Autodesk Fusion 360 - Setup Wizard (Linux) #
|
|
|
|
|
# Description: This file create the structure for the Setup Wizard. #
|
|
|
|
|
# Author: Steve Zabka #
|
|
|
|
|
# Author URI: https://cryinkfly.com #
|
|
|
|
|
# License: MIT #
|
|
|
|
|
# Copyright (c) 2020-2021 #
|
|
|
|
|
# Time/Date: 10:00/20.10.2021 #
|
|
|
|
|
# Version: 1.0 #
|
|
|
|
|
####################################################################################################
|
|
|
|
|
|
|
|
|
|
###############################################################################################################################################################
|
|
|
|
|
# ALL FUNCTIONS ARE ARRANGED HERE: #
|
|
|
|
|
###############################################################################################################################################################
|
|
|
|
|
|
|
|
|
|
mkdir -p bin
|
|
|
|
|
mkdir -p data
|
|
|
|
|
|
|
|
|
|
wget -N -P bin https://github.com/cryinkfly/Autodesk-Fusion-360-for-Linux/raw/main/files/scripts/stable-branch/bin/fusion360-base.sh
|
2021-10-20 11:34:08 +02:00
|
|
|
cd bin
|
|
|
|
|
chmod +x fusion360-base.sh
|
|
|
|
|
bash fusion360-base.sh
|