https://github.com/paboyle/Grid
Raw File
Tip revision: 12e239dd9fa2bd43e90d5b67bd1ab4f6bf9cdeb8 authored by Peter Boyle on 13 October 2020, 17:38:29 UTC
Merge branch 'release/dirac-ITT-2020'
Tip revision: 12e239d
grep-global
#!/bin/bash

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

back to top