EN
Windows Command Line - 'rm' is not recognized as an internal or external command
1
answers
8
points
What is the reasone I have got following error in Windows Command Line:
'rm' is not recognized as an internal or external command,
operable program or batch file.
when I call in cmd:
rm src/index.js
1 answer
3
points
rm
command is used under Linux / Unix operating systems.
Under Windows you should use:
del src/index.js
Hint: if you wnat to use some basic Linux commands under Windows you can install Bash for Windows - link here.
References
0 comments
Add comment