Utility to work with file lists in the format of the BSD mtree(8) tool.
Note: This is not a replacement for mtree, and you may want to have
both installed side-by-side.
Make sure you have libarchive and its development headers installed. Meson is used for configuration and Ninja for building; Samurai can be used for building as well:
meson build
ninja -C buildFile lists in mtree format are accepted on standard input.
-
ltree -l < MTREEprints out the contents of the list. The-lflag can be omitted, as this is the default mode. -
ltree -C < MTREEchecks whether the files from the list are present in the file system and match the specification.
Operations which act on the file system accept a -p PATH command line option
which prepends PATH as prefix to all the file names in the list. Verbose
operation can be enabled with -v, which lists each entry as it is processed.
Any operation which prints paths in the output can output them delimited by
null characters by passing -0 as a command line option.
The ltree tool can use file lists in the format recognized by
libarchive.
On GNU/Linux the mtree port by @archiecobbs is known to generate compatible output.
Distributed under terms of the MIT/X11 license