source: trunk/MagicSoft/Mars/datacenter/scripts/rmlocks@ 7395

Last change on this file since 7395 was 7395, checked in by Daniela Dorner, 19 years ago
*** empty log message ***
  • Property svn:executable set to *
File size: 1.5 KB
Line 
1#!/bin/sh
2#
3# ========================================================================
4#
5# *
6# * This file is part of MARS, the MAGIC Analysis and Reconstruction
7# * Software. It is distributed to you in the hope that it can be a useful
8# * and timesaving tool in analysing Data of imaging Cerenkov telescopes.
9# * It is distributed WITHOUT ANY WARRANTY.
10# *
11# * Permission to use, copy, modify and distribute this software and its
12# * documentation for any purpose is hereby granted without fee,
13# * provided that the above copyright notice appear in all copies and
14# * that both that copyright notice and this permission notice appear
15# * in supporting documentation. It is provided "as is" without express
16# * or implied warranty.
17# *
18#
19#
20# Author(s): Daniela Dorner 08/2005 <mailto:dorner@astro.uni-wuerzburg.de>
21#
22# Copyright: MAGIC Software Development, 2000-2004
23#
24#
25# ========================================================================
26#
27#
28
29user=`whoami`
30source /home/$user/Mars/datacenter/scripts/sourcefile
31
32files=`ls $lockpath/*`
33
34for file in ${files[@]}
35do
36 filedate=`date +%H -r $file`
37 now=`date +%H`
38 compdate=`expr $now - 13 + 24`
39# echo "date: "$filedate
40# echo "now: " $now
41# echo "comp: " $compdate
42 filedate2=`expr $filedate + 24`
43
44 if [ $compdate -gt $filedate2 ] || [ $filedate -gt $now ]
45 then
46 rm -v $file
47 echo "date: "$filedate
48 echo "date2: "$filedate2
49 echo "now: "$now
50 echo "comp: "$compdate
51 date
52 fi
53done
54
Note: See TracBrowser for help on using the repository browser.