PageRenderTime 44ms CodeModel.GetById 18ms RepoModel.GetById 1ms app.codeStats 0ms

/jEdit/tags/jedit-4-0-pre3/bsh/commands/exec.bsh

#
Unknown | 9 lines | 7 code | 2 blank | 0 comment | 0 complexity | 486abd132d0767a75feb34ca04ccb48a MD5 | raw file
Possible License(s): BSD-3-Clause, AGPL-1.0, Apache-2.0, LGPL-2.0, LGPL-3.0, GPL-2.0, CC-BY-SA-3.0, LGPL-2.1, GPL-3.0, MPL-2.0-no-copyleft-exception, IPL-1.0
  1. bsh.help.exec = "usage: exec( String arg )";
  2. exec( String arg ) {
  3. proc = Runtime.getRuntime().exec(arg);
  4. din = new DataInputStream( proc.getInputStream() );
  5. while( (line=din.readLine()) != null )
  6. print(line);
  7. }