I tried to remove my Git-files:
rm -R .git | yes
My CPU becomes loud, and no file is removed. I cannot understand what is going on. How can I remove my .git-files?
|
I tried to remove my Git-files:
My CPU becomes loud, and no file is removed. I cannot understand what is going on. How can I remove my .git-files?
| ||||
feedback
|
|
Try
You were passing the output of rm to yes (flow is left->right), but as yes does not read stdin, rm was just left hanging there. Also, you do not really need yes anyway. As the only questions you seriously want to answer with 'yes' in an automated fashion are whether to delete read-only files, you can use the -f parameter ('force'):
| |||||
feedback
|
|
.git is likely to have a lot of files under it. Try using
that way it will show you what files are being deleted. | |||
|
feedback
|
|
It looks like you're trying to deal with
If you want to pipe the output of one command into another, the source has to come first, before the pipe:
| |||
|
feedback
|