https://github.com/paboyle/Grid
Raw File
Tip revision: 2b4399f8b1a76ea38702b7c95276328b0a1a785d authored by Antonin Portelli on 07 March 2024, 06:26:01 UTC
more HOST_NAME_MAX fix
Tip revision: 2b4399f
grep-global
#!/bin/bash

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

back to top