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