Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 311 Bytes

suppress-file-names-when-grepping-across-multiple-files.md

File metadata and controls

13 lines (10 loc) · 311 Bytes

Suppress File Names When Grepping Across Multiple Files

Use the -h flag to suppress file names when searching over multiple files with grep.

➜ grep 'esModule' *.json
tsconfig.json:    "esModuleInterop": true,
➜ grep -h 'esModule' *.json
    "esModuleInterop": true,