Created
February 18, 2021 07:32
-
-
Save winminsoe/59818c1c295e301e9fa1201310a62d10 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| read -p "Turn on Log?" yn | |
| case $yn in | |
| [Yy]* ) | |
| mysql -uroot -e "SET GLOBAL general_log = 'ON'" | |
| mysql -uroot -e "SELECT @@GLOBAL.general_log_file" | tail -n +2 | xargs tail -f | |
| break;; | |
| [Nn]* ) | |
| mysql -uroot -e "SET GLOBAL general_log = 'OFF'" | |
| break;; | |
| * ) echo "Please answer yes or no.";; | |
| esac |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment