updated package decription
[rrq/fusefile.git] / README.adoc
1 # fusefile
2
3 This project implements a "fuse" device to mount a concatenation of
4 fragments of one or more files as a single file.
5
6 The __fused file__ allows writing to fragments (without changing their
7 sizes); of course only for writable fragment files. The fused file may
8 be set up with an __overlay file__ to capture changes instead of
9 writing the underlying fragment files.
10
11 ====
12 This is a nominal usage example to set up a fused file C consisting of
13 files A and B:
14 ----
15 $ fusefile C A B
16 ----
17 ====
18
19 ====
20 This is a nominal example of tearing down a fused file C:
21 ----
22 $ fusermount -u C
23 ----
24 ====
25
26 See the +man page+ for usage details and some more examples.
27