summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md12
1 files changed, 8 insertions, 4 deletions
diff --git a/README.md b/README.md
index 7cd7ded..c84a4f2 100644
--- a/README.md
+++ b/README.md
@@ -1,14 +1,18 @@
# daemonize
A utility to send shell commands to the background.
-### Quick Install
+### Instant Install
+Linux/BSD/\*nix other than OSX
+```bash
+curl -s https://raw.githubusercontent.com/cflems/daemonize/master/daemonize.c | sudo gcc -xc -o /usr/bin/daemonize -
```
-curl -s https://raw.githubusercontent.com/cflem/daemonize/master/daemonize.c | gcc -xc -o daemonize -
-sudo mv daemonize /usr/bin
+OSX
+```bash
+curl -s https://raw.githubusercontent.com/cflems/daemonize/master/daemonize.c | sudo gcc -xc -o /usr/local/bin/daemonize -
```
### Usage
-```
+```bash
daemonize <command> [--chdir] [--noclose]
```
__command__: *(Required)* The command to execute as a daemon.