How can a C/C++ program put itself into background?

前端 未结 20 1782
难免孤独
难免孤独 2020-12-09 18:16

What\'s the best way for a running C or C++ program that\'s been launched from the command line to put itself into the background, equivalent to if the user had launched fro

20条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-09 18:43

    Backgrounding a process is a shell function, not an OS function.

    If you want an app to start in the background, the typical trick is to write a shell script to launch it that launches it in the background.

    #! /bin/sh
    /path/to/myGuiApplication &
    

提交回复
热议问题