ffc927cd9af36add12da7ff095ba2ab39558dee0
[rrq/fusefile.git] / README.adoc
1 # fusefile
2
3 This project implements a "fuse" device to mount as a single file that
4 is a concatenation of fragments of one or more files. The fused file
5 allows overwriting to fragments but not changing their sizes and only
6 for writable fragment files. A fused file may also be set up with an
7 overlay file in which case that file will capture all changes instead
8 of changing the underlying fragment files.
9
10 ====
11 This is a nominal usage example to set up a fused file C consisting of
12 files A and B:
13 ----
14 $ fusefile C A B
15 ----
16 ====
17
18 ====
19 This is a nominal example of tearing down a fused file X:
20 ----
21 $ fusermount -u C
22 ----
23 ====
24
25 See the +man page+ for usage details and some more examples.
26