Я пытаюсь запустить скрипт из учебника, который был написан для командной строки linux, но у меня возникают ошибки при преобразовании его во что-то, совместимое с windows. Это строка из статьи:
"build": "cd react-spa && yarn build && cd .. && cp -R react-spa/build/ public/ && mv public/index.html public/app.html"
и вот что у меня есть
cd client && yarn build && cd .. && xcopy client/build/ public/ /E && ren public/index.html app.html
Это сообщение об ошибке, которое я получаю в терминале
Invalid number of parameters
npm ERR! code ELIFECYCLE
npm ERR! errno 4
npm ERR! api@0.0.0 build: `cd client && yarn build && cd .. && xcopy client/build/ public/ /E && ren public/index.html app.html`
npm ERR! Exit status 4
npm ERR!
npm ERR! Failed at the api@0.0.0 build script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\user\AppData\Roaming\npm-cache\_logs\2020-05-01T05_29_54_552Z-debug.log
Что я здесь не так делаю?