Hi sudhakar p,
I don't have specific example but if you have functionality the below is method to call shell commands from within the code rather than using a terminal window.
Hope it helps.
char_ptr ARGV[4];
char CMD_LINE[40]="copy d:\\SPIWeb.shtml c:\\SPIWeb.shtml"; //DES Note this has 3 arguments
Shell_parse_command_line(CMD_LINE, ARGV);
Shell_copy(3, ARGV); //DES <-- the "3" represents the 3 arguments used in the command line.
Regards,
David