summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorCarson Fleming <cflems@cflems.net>2017-07-14 14:11:21 -0700
committerGitHub <noreply@github.com>2017-07-14 14:11:21 -0700
commit5e1b36e5c7f3d109a90e025620cdae5fa1b836cf (patch)
tree5856361684704c616998e4b7a395b65fc81a89f2 /README.md
parent43c4a4ee5edf57720cad9dc6a93abd4a0c3d2978 (diff)
downloaddaemonize-5e1b36e5c7f3d109a90e025620cdae5fa1b836cf.tar.gz
Wrote README.md
Diffstat (limited to 'README.md')
-rw-r--r--README.md18
1 files changed, 18 insertions, 0 deletions
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 <command> [--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 <command>