mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-06 11:23:45 +00:00
7a850e3d64
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@30452 a592a061-630c-0410-9148-cb99ea01b6c8
10 lines
181 B
Bash
Executable File
10 lines
181 B
Bash
Executable File
#!/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
|