From 5e1b36e5c7f3d109a90e025620cdae5fa1b836cf Mon Sep 17 00:00:00 2001 From: Carson Fleming Date: Fri, 14 Jul 2017 14:11:21 -0700 Subject: Wrote README.md --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..7cd7ded --- /dev/null +++ b/README.md @@ -0,0 +1,18 @@ +# daemonize +A utility to send shell commands to the background. + +### Quick Install +``` +curl -s https://raw.githubusercontent.com/cflem/daemonize/master/daemonize.c | gcc -xc -o daemonize - +sudo mv daemonize /usr/bin +``` + +### Usage +``` +daemonize [--chdir] [--noclose] +``` +__command__: *(Required)* The command to execute as a daemon. + +__noclose__: *(Optional)* Leaves streams to the current terminal session open. + +__chdir__: *(Optional)* Changes directory to / before executing -- cgit v1.2.3