diff options
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 12 |
1 files changed, 8 insertions, 4 deletions
@@ -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. |
