mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 05:16:21 +00:00
149bd1ab7b
http://www.mail-archive.com/lyx-devel@lists.lyx.org/msg152761.html git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@30451 a592a061-630c-0410-9148-cb99ea01b6c8
10 lines
181 B
Bash
10 lines
181 B
Bash
#!/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
|