tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 Tips And Tricks > Linux > How to Unzip All Files in a Directory

How to Unzip All Files in a Directory

Author: Venkata Sudhakar

We can unzip all the zip files in a given direcory in one of the following ways. Basically we need to escape * as it's treated as specical character. If we simply unzip with unzip *.zip command then mostly we will endup getting caution: filename not matched error.

Correct way to unzip all files in a directory

unzip \*.zip
unzip "*.zip"

 
  


  
bl  br