Bash Command Line

List files with regex

List all files recursivly excluding files containing 'doc' and 'source'

ls -R| egrep -v '(doc|source)'