Home » Misc » On files starting with dot and dash …

On files starting with dot and dash

Those are hidden files, but is really annoying when you type ls -a, use the following command to remove all of them.

find ./ -name "._*" -exec rm {} \;