I'm searching for a utility that will provide the means to run existing command line tools, in this case data analysis, so that the output can be captured to an editable window or box. No doubt such an application already exists consequently any pointers would be most appreciated.
Thanks.
GUI/Dialogs for command line tools
It wouldn't take much time writing such an utility using purebasic 

#PB_Program_Open : Open the program to communicate with it or get information about it.
#PB_Program_Read : Read the programs console output. (stdout)
#PB_Program_Write : Write to the input of the program. (stdin)
#PB_Program_Error : Read the error output of the program. (stderr)
#PB_Program_Connect: Connect another programs output to this programs input.