https://github.com/paboyle/Grid
Raw File
Tip revision: aa67a5b09576610999e51083808be59d72a988a2 authored by Peter Boyle on 27 August 2024, 19:54:01 UTC
Rename
Tip revision: aa67a5b
grep-global
#!/bin/bash

export LANG=C
find . -name "*.cc"  -exec grep -H $@ {} \;
find . -name "*.h"   -exec grep -H $@ {} \;

back to top