Guest User

Untitled

a guest
Feb 1st, 2019
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.12 KB | None | 0 0
  1. #!/bin/bash
  2. trap handler SIGINT
  3. RUN=true
  4. handler() {
  5.     RUN=false
  6. }
  7. while [ ${RUN} = true ]; do
  8.     ruby main.rb
  9. done
Add Comment
Please, Sign In to add comment