Skip to content

Instantly share code, notes, and snippets.

@winminsoe
Created February 18, 2021 07:32
Show Gist options
  • Select an option

  • Save winminsoe/59818c1c295e301e9fa1201310a62d10 to your computer and use it in GitHub Desktop.

Select an option

Save winminsoe/59818c1c295e301e9fa1201310a62d10 to your computer and use it in GitHub Desktop.
#!/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