Sometimes you want to continuously observe a Linux command. Instead of up arrow and enter the whole time, try this:
watch -n 1 "systemctl is-active mysql"
The above command will “watch” every 1 second if MySQL is active.
Note: Complex command must be in quotes.