mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-06 00:10:59 +00:00
10 lines
181 B
Plaintext
10 lines
181 B
Plaintext
|
#!/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
|