Advertisement
Guest User

walobo

a guest
Jul 23rd, 2011
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. ############################################
  4. #
  5. # ........just installing Watobo on BT5
  6. #
  7. ############################################
  8.  
  9. cd /pentest/web
  10. echo
  11. echo "Installing fxruby............."
  12. echo
  13. gem1.8 install fxruby
  14.  
  15. echo "Installing selenium-webdriver..........."
  16. echo
  17. gem1.8 install selenium-webdriver
  18.  
  19. echo "Checking out Watobo ................"
  20. echo
  21. svn co https://watobo.svn.sourceforge.net/svnroot/watobo watobo
  22.  
  23. cd watobo
  24. # in start-watobo.rb change hashbang to
  25. # #!/usr/bin/ruby1.8
  26. # and do a chmod 755 start_watobo.rb
  27. #
  28. sed -i -e 's/bin\/ruby/bin\/ruby1.8/g' start_watobo.rb
  29.  
  30. chmod 755 start_watobo.rb
  31.  
  32. echo
  33. echo "Done installing Watobo..............."
  34. echo
  35.  
  36.  
  37. To start Watobo on the command line you can issue
  38.  
  39. ./start_watobo.rb
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement