Suppressing Console's standard message?
Submitted by Friday, 24 September, 2004 - 19:38
on
Let's say I have a simple macro to run a DOS command:
clearConsole ( view );
runInSystemShell ( view, "echo Hi there" );
The output that I would like to see in the Console window is:
Hi there
Instead, I get:
This shell runs operating system processes.
Press TAB with an empty command line to list built-in commands.
Run built-in with --help argument to get a brief usage message.
Run %help to view Console plugin online help.
Errors generated by compilers and some other programs are listed
for easy one-click access in the 'Plugins->Error List->Error List'
window.
Working directory is C:\Program Files\jEdit
> echo Hi there
Hi there
Process echo exited with code 0
Working directory is C:\Program Files\jEdit
Is there a way to suppress all that extraneous stuff that Console is putting out?
Thanks.
clearConsole ( view );
runInSystemShell ( view, "echo Hi there" );
The output that I would like to see in the Console window is:
Hi there
Instead, I get:
This shell runs operating system processes.
Press TAB with an empty command line to list built-in commands.
Run built-in with --help argument to get a brief usage message.
Run %help to view Console plugin online help.
Errors generated by compilers and some other programs are listed
for easy one-click access in the 'Plugins->Error List->Error List'
window.
Working directory is C:\Program Files\jEdit
> echo Hi there
Hi there
Process echo exited with code 0
Working directory is C:\Program Files\jEdit
Is there a way to suppress all that extraneous stuff that Console is putting out?
Thanks.