Revision 438caab25f66918dc5f29bd4a873f52baef2aeeb authored by Fabian Joswig on 27 February 2022, 18:27:18 UTC, committed by Fabian Joswig on 27 February 2022, 18:27:18 UTC
1 parent 239e2c1
Raw File
grep-global
#!/bin/bash

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

back to top