I have a laptop installed with Ubuntu 10.04. I migrated some of my files from one computer to this computer. But there are some files like Thumbs.db file whose every occurrence I want to get rid of.
I tried using
locate Thumbs.db | rm
But dis didn't worked out (and clearly it should not). Then I tried using following, but quite expectedly none of them worked out :
locate thumbs.db > rm
locate thumbs.db < rm
As everyone here, might have pointed out that I am having a hard time using pipeline and want to just clear my concept using this as an example. I have read the basics but still not able to intitutively able to apply it.
Please tell me how to work this out. I will try to figure out rest for myself :D .