I need to remove all files and directories starts with ._ recursively:
find . -name \._* | xargs rm
How can this be done on Windows using a DOS/shell command (without Cygwin)?
feedback
|
This question came from our site for professional and enthusiast programmers.
|
Have you tried | |||||||
feedback
|
|
Download unxutils . It has all the commands you listed. | |||
feedback
|
|
you could use a
note this may be overkill, considering the simplicity of Adam Liss's answer. | |||
feedback
|
|
If you are comfortable with UNIX tools then you can try installing the Berkeley Utilities which are ports of all your favourites like grep , awk and sed etc for windows. | |||
feedback
|