1
0
mirror of https://git.lyx.org/repos/lyx.git synced 2024-12-14 01:22:33 +00:00
lyx_mirror/development/keystest/find_in_finals

10 lines
181 B
Plaintext
Raw Normal View History

#!/bin/sh
# Searchs for a string in all the final versions
for f in `find . -name "last_crash_sec"`
do
SEC=`cat $f`
g=`echo $f| sed s/last_crash_sec/$SEC/`
grep "$1" $g*
done