https://github.com/paboyle/Grid
Raw File
Tip revision: 3c23a947cc4e22b6c01afd9eac5d5a4add9035c7 authored by Peter Boyle on 15 January 2021, 14:16:02 UTC
Fixed test for very much non-unit det
Tip revision: 3c23a94
grep-global
#!/bin/bash

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

back to top