diff options
author | Yann Collet <Cyan4973@users.noreply.github.com> | 2018-01-01 23:19:59 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-01 23:19:59 (GMT) |
commit | 506ae9c3331133ea63705461d2d09eebfaf3235c (patch) | |
tree | abbbea0a90485961d9906b75ceaca73f080deecd /programs/lz4.1.md | |
parent | c19d12d11ee037358e8b649865ca630397d53631 (diff) | |
parent | 329dcd4765d307aa1fad14d2e92c0f69ec45cec6 (diff) | |
download | lz4-506ae9c3331133ea63705461d2d09eebfaf3235c.zip lz4-506ae9c3331133ea63705461d2d09eebfaf3235c.tar.gz lz4-506ae9c3331133ea63705461d2d09eebfaf3235c.tar.bz2 |
Merge pull request #439 from eli-b/doc-nohup-behavior
Docs: describe behavior under nohup
Diffstat (limited to 'programs/lz4.1.md')
-rw-r--r-- | programs/lz4.1.md | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/programs/lz4.1.md b/programs/lz4.1.md index 829c232..b7b8570 100644 --- a/programs/lz4.1.md +++ b/programs/lz4.1.md @@ -45,6 +45,9 @@ Differences are : * As a consequence of previous rules, note the following example : `lz4 file | consumer` sends compressed data to `consumer` through `stdout`, hence it does _not_ create `file.lz4`. + * Another consequence of those rules is that to run `lz4` under `nohup`, + you should provide a destination file: `nohup lz4 file file.lz4`, + because `nohup` writes the specified command's output to a file. Default behaviors can be modified by opt-in commands, detailed below. |