Unzip Multiple Files from Linux Command Line
Problem :
[hadoop@spradhan]$ unzip *.zip
Archive: a.csv.zip
caution: filename not matched: b.csv.zip
caution: filename not matched: c.csv.zip
caution: filename not matched: d.csv.zip
caution: filename not matched: e.csv.zip
Solution :
[hadoop@spradhan]$ unzip ‘*.zip’
If you run in background,
[hadoop@spradhan]$ nohup unzip ‘*.zip’ &