Python and bash snippets
#!/bin/bash if [ -z "$(pgrep mysql)" ] then echo "Mysql is not running" else echo "Mysql is running" fi
No comments:
Post a Comment