https://github.com/paboyle/Grid
Raw File
Tip revision: d57ed250715b8e520d551a58118a23071a35cc76 authored by Peter Boyle on 24 March 2023, 16:08:09 UTC
Merge branch 'feature/dirichlet' into feature/block_lanczos22
Tip revision: d57ed25
grep-global
#!/bin/bash

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

back to top