A Digital Life

My Notebook

View My GitHub Profile

  • About
  • 18 August 2011

    Unzip Archive Recursively

    by kerner1000


    Sometimes you want to extract all files from an archive recursively, for example an ear, that means, extract also all archives inside the archive:

    For an ear, war or jar, you can do so like this:

     find -name "*.*ar" -exec unzip {} ;
    
    tags: zip