/ Published in: Bash
Aliases command "go!" to starting AND restarting rails server for a project from anywhere in the filesystem. Replace PROJECT_HOME with the path to your project.
Place in config.fish
Place in config.fish
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
alias go!="kill (cat PROJECT_HOME/tmp/pids/server.pid); cd PROJECT_HOME; rails s" OR (a bit more versatile and dangerous; will kill ALL rails processes, beware) alias go!="kill (ps auxw | grep "ruby.*rails" | grep -v "grep" | awk '{print $2}'); cd PROJECT_HOME; rails s"
URL: http://stackoverflow.com/questions/2762994/how-to-define-an-alias-in-fish-shell