Changeset 7861 for trunk/MagicSoft
- Timestamp:
- 08/08/06 09:56:47 (18 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r7860 r7861 18 18 19 19 -*-*- END OF LINE -*-*- 20 2006/08/08 Daniela Dorner 21 22 * datacenter/scripts/copyscript: 23 - updated address list of people who are informed about changes in 24 the catalog file 25 - improved output to mail 26 - updated search of newer catalogfiles 27 28 29 20 30 2006/08/06 Thomas Bretz 21 31 … … 160 170 datacenter/scripts/writesequencefiles: 161 171 - replaced $USER by `whoami` 172 173 * datacenter/scripts/dowebplots: 174 - write output (ps, png files) to $datapath and not $webdir to 175 speed up the webupdate 162 176 163 177 -
trunk/MagicSoft/Mars/datacenter/scripts/copyscript
r7835 r7861 209 209 diff=$setuppath/.diff #file to store difference 210 210 #addresses to which the changes are sent 211 adrs="d orner@astro.uni-wuerzburg.de, tbretz@astro.uni-wuerzburg.de, hoehne@astro.uni-wuerzburg.de"211 adrs="datacenter@astro.uni-wuerzburg.de, tbretz@astro.uni-wuerzburg.de" 212 212 213 213 #getting new catalogfiles 214 catfiles=`find $subsystempath/cc/ -name $magfav - cnewer $catalog | sort`214 catfiles=`find $subsystempath/cc/ -name $magfav -newer $catalog | sort` 215 215 216 216 for catfile in ${catfiles[@]} 217 217 do 218 218 #write information into .diff 219 echo " file: "$catfile>| $diff220 diff $cat alog $catfile>> $diff219 echo "diff $catfile $catalog" >| $diff 220 diff $catfile $catalog >> $diff 221 221 #getting differences 222 222 ins=`cat $diff| grep '>'` #what has been inserted
Note:
See TracChangeset
for help on using the changeset viewer.