as I said in the title, I'm using windows as my OS, but when I read a tutorial in github repository, they give the step to try the demo using this command:
1. $ cd testFolder
2. $ wget somelink.tar.gz
3. $ tar -zxvf demo_data.tar.gz
4. $ cp demo_data/00_data.sh .
5. $ cp demo_data/Config.py .
6. $ bash 00_data.sh
7. $ python 01_run.py
for line 1 until 3 I can do it in windows since:
- in line 1, basically we can do it the same since
cd
means to open a folder that we want - line 2, is to clone the repository
- line 3, I think it to unzip the downloaded file, and I can do it manually in windows, it's good if you can give a command line for this in windows
but for line 4-7 I'm confused as how I can trigger it in windows, can someone help me for this?