How to recursively remove hidden files and folders from the current folder.

find `pwd` -name '.*' -print0 | xargs -0 -I {} rm -R {}

Technology: 

Add new comment