From 10a8b6098aadfd3514c000cc1f21f7cac479024e Mon Sep 17 00:00:00 2001 From: Joseph Werle Date: Thu, 26 Feb 2015 09:34:50 -0500 Subject: [PATCH] make clib friendly --- README.md | 14 ++++++++++++++ package.json | 9 +++++++++ 2 files changed, 23 insertions(+) create mode 100644 package.json diff --git a/README.md b/README.md index 7d11c71..6d5cf37 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,20 @@ Using reredirect, you can log output of a already launched process, redirect debug output of a background process to `/dev/null` or to a pager as if you launched it with `>` or `|`. +Installation +------------ + +With [clib](https://github.com/clibs/clib): + + $ clib install jerome-pouiller/reredirect + +or from source: + + $ git clone https://github.com/jerome-pouiller/reredirect.git + $ cd reredirect + $ make + $ make install + Usage ----- diff --git a/package.json b/package.json new file mode 100644 index 0000000..666b582 --- /dev/null +++ b/package.json @@ -0,0 +1,9 @@ +{ + "name": "reredirect", + "version": "0.1", + "repo": "jerome-pouiller/reredirect", + "description": "Tool to dynamicly redirect outputs of a running process", + "keywords": ["reredirect", "output", "process"], + "install": "make && make install" +} +