Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a faster way to delete a directory using Cygwin command line without deleting every single file/sub-directory?

Tags:

cygwin

I'm trying to delete a directory so I can clone it from github again, since it got messed up. But there are just way too many files/sub-directories to remove them individually. Is there a faster way of doing this?

like image 499
blahblahblahblah Avatar asked Sep 06 '13 04:09

blahblahblahblah


1 Answers

You want the rm command.

rm -rf my_messed_up_repo

look at rm --help for more info.

like image 115
Nicolas Louis Guillemot Avatar answered Sep 28 '22 15:09

Nicolas Louis Guillemot