Revision cdf31d52c15109102b31f88b135bbaff8f216d30 authored by Fabian Joswig on 31 March 2022, 16:04:35 UTC, committed by Fabian Joswig on 31 March 2022, 16:04:35 UTC
1 parent 0542eaf
Raw File
grep-global
#!/bin/bash

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

back to top