https://github.com/paboyle/Grid
Raw File
Tip revision: 1edcf902b73b66240b293f6fae94b991117da1b7 authored by paboyle on 02 October 2017, 11:41:02 UTC
Macos ANON
Tip revision: 1edcf90
grep-global
#!/bin/bash

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

back to top