Files
Autodesk-Fusion-360-for-Linux/files/builds/development-branch/uninstall.sh

34 lines
2.0 KiB
Bash
Raw Normal View History

2022-05-23 07:19:11 +02:00
#!/bin/bash
################################################################################
# Name: Autodesk Fusion 360 - Uninstall the software (Linux) #
# Description: With this file you delete Autodesk Fusion 360 on your system. #
# Author: Steve Zabka #
# Author URI: https://cryinkfly.com #
# License: MIT #
# Copyright (c) 2020-2022 #
2022-05-23 07:37:24 +02:00
# Time/Date: 07:30/23.05.2022 #
2022-05-23 07:19:11 +02:00
# Version: 0.7 -> 0.8 #
################################################################################
# Path: /$HOME/.fusion360/bin/uninstall.sh
###############################################################################################################################################################
# THE INITIALIZATION OF DEPENDENCIES STARTS HERE: #
###############################################################################################################################################################
# Get a file where the user can see the exits Wineprefixes of Autodesk Fusion 360 on the system.
2022-05-23 07:27:37 +02:00
2022-05-23 10:22:40 +02:00
function DL_WINEPREFIXES_LIST {
DL_WINEPREFIXES=$(yad --height=300 --list --checklist --column=SELECT --column=WINEPREFIXES < /tmp/fusion360/logs/wineprefixes.log)
DL_WINEPREFIXES_VAR_1=`grep -n "$select" test.txt | grep -Eo '^[^:]+'`
DL_WINEPREFIXES_VAR_2=1
DL_WINEPREFIXES_VAR_SUM=`echo $(( var1 - var2 ))`
sed --in-place "${DL_WINEPREFIXES_VAR_SUM}d" /tmp/fusion360/logs/wineprefixes.log
DL_WINEPREFIXES_VAR_1=`grep -n "$select" test.txt | grep -Eo '^[^:]+'`
sed --in-place "${DL_WINEPREFIXES_VAR_1}d" /tmp/fusion360/logs/wineprefixes.log
# Continue with removing ...
rmdir $DL_WINEPREFIXES
rmdir $HOME/.fusion360
2022-05-23 07:27:37 +02:00
}