Skip to content

Instantly share code, notes, and snippets.

View michael-delle's full-sized avatar

Michael Delle michael-delle

View GitHub Profile
#!/bin/bash
#
# Automate mysql secure installation for debian-baed systems
#
# - You can set a password for root accounts.
# - You can remove root accounts that are accessible from outside the local host.
# - You can remove anonymous-user accounts.
# - You can remove the test database (which by default can be accessed by all users, even anonymous users),
# and privileges that permit anyone to access databases with names that start with test_.
@michael-delle
michael-delle / bumpversion.sh
Last active August 29, 2015 14:23 — forked from pete-otaqui/bumpversion.sh
Display the authors name in parentheses in the CHANGES file.
#!/bin/bash
# works with a file called VERSION in the current directory,
# the contents of which should be a semantic version number
# such as "1.2.3"
# this script will display the current version, automatically
# suggest a "minor" version update, and ask for input to use
# the suggestion, or a newly entered value.