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.
Georgi Chorbadzhiyski dae2618a4f Add RELEASE file and define version strings. 12 years ago
test Change fjfs command line parameters places. 12 years ago
.gitignore Add .gitignore file. 12 years ago
Makefile Add RELEASE file and define version strings. 12 years ago
README Change fjfs command line parameters places. 12 years ago
RELEASE Add RELEASE file and define version strings. 12 years ago
fjfs.c Add RELEASE file and define version strings. 12 years ago

README

fjfs is FUSE module that implements virtual joining of multiple files as 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. Mount fjfs
./fjfs joined.txt filelist.txt

4. Check the result with
cat joined.txt

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

5. Unmount the fs
fusermount -u joined.txt && rm joined.txt