Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jambonrose/c74max6-removal
An uninstaller for Cycling '74's Max 6 Program on Mac OS X
https://github.com/jambonrose/c74max6-removal
Last synced: about 1 month ago
JSON representation
An uninstaller for Cycling '74's Max 6 Program on Mac OS X
- Host: GitHub
- URL: https://github.com/jambonrose/c74max6-removal
- Owner: jambonrose
- Created: 2012-10-26T19:44:04.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2012-10-27T02:26:15.000Z (about 12 years ago)
- Last Synced: 2023-04-01T03:12:19.920Z (over 1 year ago)
- Language: Shell
- Size: 176 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
c74max6-removal
===============An uninstaller for Cycling '74's Max 6 Program on Mac OS X.
This simple bash script removes all of the files created by the Max 6 trial installer and a first run of the Max 6 program. This includes PACE's Interlok Anti-Piracy software.
The script has been tested on Mac OS 10.7.5 using the Max6_120919_a687c3d installer.
This script is released under GPLv3 (please see code for more information).
### WARNING
This script will indiscriminately delete all of the folders containing Max 6 and Interlok.
Before running this script, please back up any files or projects you would like to keep.
**I provide no guarantee or warranty that this will work as specified, or that it will leave your computer unharmed.**Determining Files Affected
---------------
```bash
$ touch timestamp.dat
# Install Max 6
$ find / -newer timestamp.dat >> ~/log.txt
$ touch timestamp.dat
# Run Max for first time
$ find / -newer timestamp.dat >> ~/log.txt
$ less ~/log.txt
# the line above will output a list of all the files changed
# NB: not all files in the list are being affected by Max
# some are being affected by the OS
# do not attempt to delete all of the files in this log
# it will end very very badly
```