mirror of
https://github.com/mongodb/mongo.git
synced 2024-12-01 09:32:32 +01:00
18 lines
465 B
Tcsh
18 lines
465 B
Tcsh
|
|
limit coredumpsize 200m
|
|
|
|
while ( 1 == 1 )
|
|
|
|
if ( -f log/run.log6 ) mv log/run.log6 log/run.log.7
|
|
if ( -f log/run.log5 ) mv log/run.log5 log/run.log.6
|
|
if ( -f log/run.log4 ) mv log/run.log4 log/run.log.5
|
|
if ( -f log/run.log3 ) mv log/run.log3 log/run.log.4
|
|
if ( -f log/run.log2 ) mv log/run.log2 log/run.log.3
|
|
if ( -f log/run.log1 ) mv log/run.log1 log/run.log.2
|
|
if ( -f log/run.log ) mv log/run.log log/run.log.1
|
|
|
|
./db/db run >& log/run.log
|
|
sleep 2
|
|
end
|
|
|