https://github.com/paboyle/Grid
Raw File
Tip revision: da593796123f99307b486350f8b2ef6ae7d2c375 authored by Peter Boyle on 26 March 2024, 17:03:20 UTC
Large reg file for double
Tip revision: da59379
grep-global
#!/bin/bash

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

back to top