Revision 698e745276ff3d9f974e708ff03693a54ea4ec62 authored by Peter Boyle on 03 May 2022, 12:51:10 UTC, committed by GitHub on 03 May 2022, 12:51:10 UTC
2 parent s 9a6e2c3 + b8bc560
Raw File
grep-global
#!/bin/bash

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

back to top