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
Post a Comment