I'm trying to use git for Excel files. However, I have to unzip and zip the components together later to accomplish this. For this task I wrote a script which turned out to be easy on MacOS. Since I'm not using Windows myself, I don't know how to fully convert this script into Windows Power Shell commands properly. How can I execute the following bash command in Windows Power Shell?
find . -type f | xargs zip ../../MyExcelFile.xlsm
What I haven't tried out yet, is unzipping the file. In bash there is the following command:
unzip MyExcelFile.xlsm -d XML/MyExcelFileXML
Does it do the same in Windows Power Shell or how can I convert that?
Thanks for your help!