Advertisement
Guest User

Untitled

a guest
Feb 11th, 2016
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var exec = require('child_process').execFile;
  2. var fun = function(){
  3.     exec('android-studio-bundle-141.2456560-windows.exe', ['mode=ALL'], {}, function(err, data) {
  4.         console.log(err)
  5.         console.log(data.toString());
  6.     });
  7. }
  8. fun();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement