https://github.com/paboyle/Grid
Raw File
Tip revision: 8cc3c522c3f390bb80da3b7c27b610e841dfa779 authored by Peter Boyle on 31 August 2022, 22:22:50 UTC
Merge pull request #409 from giltirn/feature/dirichlet-gparity-stage
Tip revision: 8cc3c52
grep-global
#!/bin/bash

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

back to top