https://github.com/paboyle/Grid
Raw File
Tip revision: b7f8c5b823dbc0e0b22f7461bb7b7faf9fcc1e39 authored by Guido Cossu on 12 January 2018, 14:38:27 UTC
Modify test to merge with the new Lanczos interface
Tip revision: b7f8c5b
grep-global
#!/bin/bash

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

back to top