0
I have this problem, where I need to find all files with a particular name and zip all of them into a single zip file.
I tired things like
find . -not -name "*bz2" -name "myname*" -exec bzip2 test.bz2 {} +;
and
find . -not -name "*bz2" -name "myname*" -exec bzip2 test.bz2 {} /;
and many others, but its always zipping them separately. In need it to be a bzip file.