# fusefile :author: Ralph Ronnquist :revdate: Sun, 30 Apr 2023 21:18:34 +1000 This project implements a "fuse" device to mount a concatenation of fragments of one or more files as a single file. The __fused file__ allows writing to fragments (without changing their sizes); of course only for writable fragment files. The fused file may be set up with an __overlay file__ to capture changes instead of writing the underlying fragment files. ==== This is a usage example to set up a fused file C consisting of files A and B: ---- $ fusefile C A B ---- ==== ==== This is an example of tearing down a fused file C: ---- $ fusermount -u C ---- ==== See the +man page+ for usage details and some more examples.