https://github.com/paboyle/Grid
Raw File
Tip revision: a5645a7efe92b4abdc557e8d0accefddf8cdbb13 authored by Azusa Yamaguchi on 30 May 2018, 08:48:52 UTC
for dwf_precondition
Tip revision: a5645a7
grep-global
#!/bin/bash

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

back to top