Fish alias for restarting Rails server


/ Published in: Bash
Save to your folder(s)

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


Copy this code and paste it in your HTML
  1. alias go!="kill (cat PROJECT_HOME/tmp/pids/server.pid); cd PROJECT_HOME; rails s"
  2.  
  3. OR (a bit more versatile and dangerous; will kill ALL rails processes, beware)
  4.  
  5. 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

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.