This chapter explains the anatomy of the daemons: what they consist of, what properties they have, and where they reside in the file system.
Also, the chapter provides an example of a simple daemon that you can write and run yourself in five minutes.
What Is the Daemon?
A daemon is a plist file (job description).
A daemon in the *OS operating system family is represented by a config file (.plist) with a description of the daemon and the executable to run. Daemons are run under launchd.
In this book, the term daemon is used to ...