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

Verilog Error: output or inout port "Q" must be connected to a structural net expression -

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

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 -