1 2 3 4 5 6 7 8 9 10 11
#!/bin/bash if [ $1 == "-c" ]; then bundle exec rails c fi if [ $1 == "-s" ]; then bundle exec rails s fi #echo "Only use: start -c or start -s. Don't be a jackass."