-
Open the Terminal
-
Use
mysqldump
to backup your databases -
Check for MySQL processes with:
ps -ax | grep mysql
-
Stop and kill any MySQL processes
-
Analyze MySQL on HomeBrew:
brew remove mysql
#!/bin/sh | |
# | |
# Iconizer shell script by Steve Richey ([email protected]) | |
# Modified by Rich Ellis ([email protected]) based on contributions on Github from crishoj, giria | |
# https://gist.github.com/steverichey/8493f3bd31ae71a9c933/forks | |
# | |
# This is a simple tool to generate all necessary app icon sizes and the JSON file for an *EXISTING* Xcode project from one file. | |
# To use: specify the path to your vector graphic (PDF format) and the path to your Xcode folder containing Assets.xcassets | |
# Example: sh iconizer.sh MyVectorGraphic.pdf MyXcodeProject |