Guest User

Untitled

a guest
Jan 22nd, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. RVM_HOME='~/.rvm'
  4. RUBY186=$RVM_HOME'/rubies/ruby-1.8.6-p420/bin/ruby'
  5. RUBY187=$RVM_HOME'/rubies/ruby-1.8.7-p352/bin/ruby'
  6.  
  7. for f in `ls *.rb`; do
  8. echo "########## $f ##########"
  9. $RUBY186 $f
  10. $RUBY187 $f
  11. done
Add Comment
Please, Sign In to add comment