Reputation: 115
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?
Upvotes: 5
Views: 13552
Reputation: 1628
You want the rm
command.
rm -rf my_messed_up_repo
look at rm --help
for more info.
Upvotes: 9