如何用C代碼開啟新終端?

如何用C代碼開啟新終端?

我正在使用 ubuntu 14.04 和 Qtcreator 來編譯程式碼。我可以透過程式碼運行終端system("/home/salman/find_location/start_yarp.sh"); ,但在下一行我想在新終端中system("/home/salman/find_location/start_icub.sh");開啟第二個檔案。.sh如何打開新終端機?我已經嘗試過了system("gnome-terminal");,但沒有成功。

答案1

使用

system("x-terminal-emulator -e \"/home/salman/find_location/start_yarp.sh\"")

相關內容