https://github.com/paboyle/Grid
Raw File
Tip revision: e29b97b3eac9b16bcb1e6f77ebd85c61e967b11e authored by Peter Boyle on 14 September 2023, 20:14:03 UTC
Qslash term added
Tip revision: e29b97b
grep-global
#!/bin/bash

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

back to top