bash- unzip compressed files in multiple directories at once -


There is a directory with many directories within me, each has several bz2 files, how do I get them all into my own directory Can I open a bash at bzip2 at once?

Try the following: Find ./ -iname " * .bz2 "-exec bzip2 -d {} \;

Comments

Popular posts from this blog

c# - ASP.NET MVC - Attaching an entity of type 'MODELNAME' failed because another entity of the same type already has the same primary key value -

jasper reports - How to center align barcode using jasperreports and barcode4j -

django - CommandError: You must set settings.ALLOWED_HOSTS if DEBUG is False -