cd ./img2
- Find all files from all dir and subdir
dir /b /a-d /s > all_files.txt
- Find all CSS and JS
dir /b /a-d /s | grep -i \.css$ > all_css.txt
and
dir /b /a-d /s | grep -i \.js$ > all_js.txt
- copy all 'txt' files to dir
result
- run
node index.js
in root dir