/jEdit/tags/jedit-4-1-pre5/bsh/commands/exec.bsh

# · Unknown · 13 lines · 11 code · 2 blank · 0 comment · 0 complexity · 454db0d5d69594d3f5c0c518d71bd626 MD5 · raw file

  1. /**
  2. Get the Java Runtime and start the external process, display any
  3. output to the standard bsh output.
  4. */
  5. bsh.help.exec = "usage: exec( String arg )";
  6. exec( String arg ) {
  7. proc = Runtime.getRuntime().exec(arg);
  8. din = new DataInputStream( proc.getInputStream() );
  9. while( (line=din.readLine()) != null )
  10. print(line);
  11. }