I have Linux based server with domains:
domain1.com
public_html
archive1.zip
domain2.com
public_html
archive2.zip
domain3.com
public_html
archive3.zip
I'm trying to run unziping in the following way:
unzip */public_html/*.zip
It works perfectly for one domain (except the fact that it unzips in folder where I launch this command).
Is there any way for bulk unziping to get the following output:
domain1.com
public_html
archive1.zip
content_of_archive1
domain2.com
public_html
archive2.zip
content_of_archive2
domain3.com
public_html
archive3.zip
content_of_archive3
Thank you for your time and help!