Guest User

Untitled

a guest
Feb 19th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. cat <<EOF
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  3.  
  4. <html>
  5. <head>
  6. <style type="text/css" media="screen">
  7. /* <![CDATA[ */
  8. * {
  9. margin:0;
  10. padding:0;
  11. }
  12. body {
  13. background:black;
  14. color:white;
  15. font: 11px "Consolas", monospace;
  16. padding:10px;
  17. }
  18. /* ]]> */
  19. </style>
  20. <script type="text/javascript">
  21. function unixify(arg) {
  22. // double Escaped because this is a shell script
  23. var cmd = "osascript -e 'tell the application \\"TextMate\\" to insert \\""+ arg +"\\"'&>/dev/null &";
  24. var res = TextMate.system(cmd, null).outputString;
  25. document.getElementById("history").innerText += cmd+'\n';
  26. document.getElementById("result").innerText = res;
  27. window.location.hash = "result";
  28. false
  29. }
  30. </script>
  31.  
  32. <title></title>
  33. <style type="text/css">
  34. input.c1 {width:100%;}
  35. </style>
  36. </head>
  37.  
  38. <body>
  39. <pre id="history"></pre>
  40. <form onsubmit="unixify(document.getElementById('command').value);return false">
  41. <input type="text" name="command" value="howdy!" id="command" class="c1">
  42. </form>
  43. <hr>
  44. <pre id="result"></pre>
  45. </body>
  46. </html>
  47. EOF
Add Comment
Please, Sign In to add comment