This file contains 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 | |
# plenvを自動的に入れてくれるやつです | |
set -e | |
if [[ $(which plenv 2> /dev/null) ]]; then | |
echo 'plenv already installed.' | |
elif [[ ! $(which git) ]]; then | |
echo 'git is not installed!!!!!!!' | |
exit 1; |
This file contains 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/sh | |
# | |
# Forked at 2014/08/12 | |
# Modifier: OGATA Tetsuji <github:xtetsuji> | |
# Source: https://gist.github.com/xtetsuji/d82125bfab2247d6cc96 | |
# | |
# Thanks to original: | |
# File: check_mysql_slavestatus.sh | |
# Release Version: 0.1.1 | |
# Created 2012/12/10 |