What happens when youre Running Scripts without a console in
What happens when you\'re Running Scripts without a console in Linux/UNIX.
Solution
The script will run as a background process that is daemon process. These daemon processes doesnot interact with the user. Console is used to send text output and receive user input and is under the direct control of the user. However daemon process is run in the background by forking a child process and the parent is exited immediately.
