Pepper
Pepper

Reputation: 719

how to delete a folder using linux command line

I am using Angular V2.

I setup a project using:

ng new PROJECT_NAME
cd PROJECT_NAME
ng serve

How do I delete the whole Angular project I setup via the command line (am on ubuntu).

Thanks

Upvotes: 1

Views: 5339

Answers (1)

Martin
Martin

Reputation: 16292

This is more of a bash than an angular question.

cd ..
rm -fr PROJECT_NAME

Upvotes: 4

Related Questions