i have created qtwidget program..
i want to execute this qt program in root directory of linux script.
can any one give me suggesstion for this:confused:
Thanx in advance
Printable View
i have created qtwidget program..
i want to execute this qt program in root directory of linux script.
can any one give me suggesstion for this:confused:
Thanx in advance
Login as root or try command su
What does that mean?
You want the root directory to be the program's current work directory?
Just have the script change to the root directory before you execute the program
or have the program change its working directory:Code:
cd / /path/to/program
The question is: why would you need that?
Why would your program rely on that?
Cheers,
_