mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
8 lines
229 B
Bash
8 lines
229 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
|
||
|
RE=$(echo $(cut -d: -f1 scripts/spelling.dat | sed -e 's/^/\\</; s/$/\\>|/;') | sed -e 's/| /|/g; s/|$//;')
|
||
|
EX="\.(svn-base|tmp|xpm|ts)|context_help|spelling\.dat"
|
||
|
|
||
|
egrep --color=always "$RE" -r . | egrep -v "$EX"
|