fjfs is FUSE module that implements virtual joining of multiple files as one. https://georgi.unixsol.org/programs/fjfs/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README 734B

fjfs v1.0

fjfs is a FUSE module that allows several files to be virtually joined into one.

To compile the program run "make".

To use it:
1. Install the FUSE module
sudo modprobe fuse

2. Create the list of files to join
echo /etc/group >> filelist.txt
echo /etc/issue >> filelist.txt
echo /etc/passwd >> filelist.txt

3. Create an empty file over which the files in the list will be joined
touch joined.txt

4. Mount fjfs
./fjfs filelist.txt joined.txt

5. Check the result with
cat joined.txt

You will see the contents of all the files listed in filelist.txt

6. Unmount the fs
fusermount -u joined.txt