|
Your question isn't clear. There are multiple ways to input data into a program; via a GUI interface, via a TCP socket, via a file - the list goes on. The standard way of inputting data to console applications is STDIN, which most non-GUI console applications use. If you want to mix user input with automated input via STDIN in a custom arrangement, you'll probably need a more powerful scripting language than KSH. Possibly something like Perl or Python.
|