]> git.lyx.org Git - lyx.git/blob - development/keystest/find_in_finals
ctests: Sort dedicated test documents for language support.
[lyx.git] / development / keystest / find_in_finals
1 #!/bin/sh
2 # Searchs for a string in all the final versions 
3
4 for f in `find . -name "last_crash_sec"`
5 do      
6         SEC=`cat $f`
7         g=`echo $f| sed s/last_crash_sec/$SEC/`
8         grep "$1" $g*
9 done