On Thursday 15 January 2009 15:30:49 Ankit Agarwal wrote: > Hi, > I have two independent doubts: > 1. I have my GUI in Qt. I need to execute a shell script. which shall be > better : a. system() b. QProcess ? if you need to fire and forget, use system(). if you need some sort of interprocess communication, use QProcess() -- ivan