Display all MySQL databases modi
public shellscript v1 · immutable#!/bin/sh# This script will find all MySQL databases modified within the last 90 daysexport SEARCHPERIOD="90"export DBPATH="/var/lib/mysql/"find $DBPATH -mtime -$SEARCHPERIOD -type f -exec dirname {} \; | replace $DBPATH "" | uniq