4. Examples

Using ffs.py:
$ cat in.example1

dir /a
dir /b
file /a/c 2
file /a/d 2
file /a/e 2
file /b/f 2

$ python ./ffs.py -f in.example1 -c -d 10

group inodes     data
    0 /--------- /---------
    1 acde------ accddee---
    2 bf-------- bff-------
    3 ---------- ----------
    4 ---------- ----------
    5 ---------- ----------
    6 ---------- ----------
    7 ---------- ----------
    8 ---------- ----------
    9 ---------- ----------

$ python ./ffs.py -f in.example1 -c -d 10 -I

group inodes     data
    0 /--------- /---------
    1 a--------- a---------
    2 b--------- b---------
    3 c--------- cc--------
    4 d--------- dd--------
    5 e--------- ee--------
    6 f--------- ff--------
    7 ---------- ----------
    8 ---------- ----------
    9 ---------- ----------