/jEdit/tags/jedit-4-2-pre4/bsh/commands/exec.bsh
# · Unknown · 14 lines · 12 code · 2 blank · 0 comment · 0 complexity · 59a1e8d937f948d5d02c6337130fa923 MD5 · raw file
- /**
- Start an external application using the Java Runtime exec() method.
- Display any output to the standard BeanShell output using print().
- */
- bsh.help.exec = "usage: exec( String arg )";
- exec( String arg )
- {
- this.proc = Runtime.getRuntime().exec(arg);
- this.din = new DataInputStream( proc.getInputStream() );
- while( (line=din.readLine()) != null )
- print(line);
- }