Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

'RM' is not recognized as an internal or external command while using Meteor on Windows

i am currently having problem with 'meteor' and i am currently new to this learning this stuff. So, after installing 'Meteor' i opened command prompt on Windows and typed :

meteor create goodboy 

and then,

cd goodboy 

But to delete the live and already running example app, i used :

rm goodboy.* 

But the command prompt, gave this error :

rm is not recognized as an internal or external command, operable program or batch file.

Is there anyway i can fix this error, thank you.

like image 519
user2891869 Avatar asked Oct 17 '15 16:10

user2891869


People also ask

Why rm is not working in CMD?

'rm' is not recognized as an internal or external command, operable program or batch file. This error has occurred because the rm command is not available in windows os. It is only available in Linux-based operating systems.


1 Answers

Use del on Windows.

Also, this has nothing to do with Meteor. You can also delete a Meteor project by going to the folder and dragging it to the trash.

like image 109
Eliezer Steinbock Avatar answered Sep 22 '22 07:09

Eliezer Steinbock