mirror of
https://github.com/cryinkfly/Autodesk-Fusion-360-for-Linux.git
synced 2025-11-03 03:45:57 +01:00
25 lines
1.7 KiB
Bash
25 lines
1.7 KiB
Bash
#!/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
|
|
cd bin
|
|
chmod +x fusion360-base.sh
|
|
bash fusion360-base.sh
|