Skip to content

Instantly share code, notes, and snippets.

View TheFlightSimsOfficial's full-sized avatar
💭
I may be slow to respond.

TheFlightSimsOfficial TheFlightSimsOfficial

💭
I may be slow to respond.
  • TheFlightSims
  • United States
  • 18:48 (UTC -07:00)
View GitHub Profile
@thomasmb
thomasmb / mysql_pwd_reset.sh
Created August 12, 2014 20:55
A shell script for resetting the root MySQL password
# Please confirm that you want to reset the MySQL passwords
CONFIRM="n"
echo -n "Please confirm MySQL password reset. Continue? (y/N): "
read -n 1 CONFIRM_INPUT
if [ -n "$CONFIRM_INPUT" ]; then
CONFIRM=$CONFIRM_INPUT
fi
echo