How can I ignore and exclude all . dot folder anf files from find command on Linux? Is it even possible? My current solution got grep:
find /app/ -type f -iname "project*.cpp" | grep -v ".config"
There are many such .dot files. So this solution is not workable. Can we ignore all .dot files when using find on Linux? Please give suggestions.