https://github.com/paboyle/Grid
Raw File
Tip revision: 8bdadbadaca9cffd8d7616cc9deed07187b262f1 authored by Peter Boyle on 18 March 2021, 19:41:14 UTC
Cold start
Tip revision: 8bdadba
grep-global
#!/bin/bash

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

back to top