About 935,000 results
Open links in new tab
  1. How can I exclude directories from grep -R? - Stack Overflow

    I probably spent way too much time on this than any sane person, but I can't for the life of me figure out how to exclude a subdirectory from the search - grep -r --exclude-dir=public keyword …

  2. Configure Sonar to exclude files from Maven pom.xml

    Learn how to configure Sonar to exclude specific files from Maven pom.xml using various methods and settings.

  3. Exclude a column using SELECT * [except columnA] FROM tableA?

    SELECT * [except columnA] FROM tableA The only way that I know is to manually specify all the columns and exclude the unwanted column. This is really time consuming so I'm looking for …

  4. How do I exclude a directory when using `find`? [closed]

    How do I exclude a specific directory when searching for *.js files using find? Quick example: exclude all directories with a given prefix This is a really useful example that doesn't answer …

  5. Difference b/w only Exclude and Omit (Pick & Exclude) Typescript

    Jul 6, 2019 · Exclude is used in the definition of Omit. Exclude<keyof T, K> takes a union of the keys of T and removes the keys specified by K. And then Pick extracts the remaining …

  6. How to exclude list of items from Get-ChildItem result in …

    I want to get list of files (actually number of files) in a path, recursively, excluding certain types:

  7. How can I exclude multiple folders using Get-ChildItem -exclude?

    Get-ChildItem -Exclude folder1,folder2 | Get-ChildItem -Recurse | ... Start excluding folders you don't want Then do the recursive search with non desired folders excluded. What I like from …

  8. sonar runner - SonarQube Exclude a directory - Stack Overflow

    May 25, 2017 · The folder structure also matters : for example : /webapp/**/* will exclude all files under webapp directory. The " " is for directory and " " is for file. If you just have **/webapp/ …

  9. Use grep --exclude/--include syntax to not grep through certain files

    Oct 21, 2008 · --exclude=PATTERN Recurse in directories skip file matching PATTERN. Searching on grep include, grep include exclude, grep exclude and variants did not find …

  10. regex - How can I exclude one word with grep? - Stack Overflow

    Dec 27, 2010 · How can I exclude one word with grep? Asked 14 years, 11 months ago Modified 2 years, 11 months ago Viewed 1.2m times