mirror of
				https://github.com/cryinkfly/Autodesk-Fusion-360-for-Linux.git
				synced 2025-11-04 04:16:19 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			24 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:    11: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
 | 
						|
chmod +x bin/fusion360-base.sh
 | 
						|
. bin/fusion360-base.sh
 |