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" +} +