https://github.com/paboyle/Grid
Raw File
Tip revision: e307bb75284daea73541dbbd6f6f1545b14d34a9 authored by Peter Boyle on 04 September 2018, 11:30:00 UTC
Reorganise to abstract kernels that know about the lattice layout.
Tip revision: e307bb7
grep-global
#!/bin/bash

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

back to top