mirror of
https://github.com/paboyle/Grid.git
synced 2024-11-09 23:45:36 +00:00
7 lines
116 B
Plaintext
7 lines
116 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
export LANG=C
|
||
|
find . -name "*.cc" -exec grep -H $@ {} \;
|
||
|
find . -name "*.h" -exec grep -H $@ {} \;
|
||
|
|