Closed
Description
the --filelist=FILE
option is great to bypass command line length limits if a lot of files like for the dictionary training thing. But instead of requiring physical file which is annoying to have lying around, bash process substituitons are great! Something like:
--filelist=<(find . -type f -print)
but this won't work because zstd says:
zstd: error reading /dev/fd/63
. Seems zstd does some sort of check that required FILE to actually be a text file.