Skip to content

Instantly share code, notes, and snippets.

View Suzeep's full-sized avatar

Suzeep Suzeep

View GitHub Profile
@hayakawa
hayakawa / devenv.sh
Created July 10, 2014 15:58
devenv.sh
#!/bin/bash
function apache() {
case "$1" in
"start" | "stop")
sudo /usr/sbin/apachectl $1;
;;
"status" )
apachestat=`ps -efww|grep "httpd"|grep -v grep|wc -l`;
if [ ${apachestat} -gt 0 ]; then