I would like to clear out my /bin folder in my project directory. How can I do this?
I tried rm -rf ~/bin but no luck
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You should say “… my bin folder”, not “my /bin folder”.
/binis an absolute path,binis a relative path.rm -rf ~/binremoves$HOME/bin, so not what you want either.Now, it depends on where you are: if you are in your project directory when you type the command, just type
rm -rf bin.