'Unzipping with Terminal Command
I need a command for replacing a Foldername in a path in order to unzip alot of Files within the terminal.
I'm using this to unzip:
find ./ * / -name \*.zip -exec unzip {} \;
My Folderstructure is for example:
Desktop/Exercises/Agata Molicka_1691376_assignsubmission_file_/File1.zip
Desktop/Exercises/Alexander Angerer_1691351_assignsubmission_file_/File2.zip
Desktop/Exercises/Alexander Rohrauer_1691342_assignsubmission_file_/File3.zip
Is there a command to declare a path independently of the folder names ?
cd Desktop/Exercises/**HERE**/find ./ -name \*.zip -exec unzip {} \;
Thanks for your help! :)
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
