Guest User

Untitled

a guest
Jun 21st, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>Execute Any Process</title>
  4. <script>
  5. function start()
  6. {
  7. var file = Components.classes["@mozilla.org/file/local;1"]
  8. .createInstance(Components.interfaces.nsILocalFile);
  9. file.initWithPath("/usr/bin/kate");
  10. file.launch();
  11. }
  12. </script>
  13. </head>
  14. <body>
  15. <input type="button" value="Run a process" onclick="start();"/>
  16. </body>
  17. </html>
Add Comment
Please, Sign In to add comment