Guest User

Untitled

a guest
Jul 19th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. # put this in ~/.irbrc
  2. def h(html)
  3. File.open('/tmp/irb.html', 'w') { |f| f.write html }
  4. `chromium /tmp/irb.html`
  5. end
  6.  
  7.  
  8. Example:
  9.  
  10. % irb
  11. >> h '<html><body>foo</body></html>'
  12. => "Created new window in existing browser session.\n"
Add Comment
Please, Sign In to add comment