1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-09-20 01:05:38 +01:00
Grid/scripts/grep-global

7 lines
116 B
Plaintext
Raw Permalink Normal View History

2017-04-20 13:17:44 +01:00
#!/bin/bash
export LANG=C
find . -name "*.cc" -exec grep -H $@ {} \;
find . -name "*.h" -exec grep -H $@ {} \;