#!/bin/sh # $Id$ # # The script prints the header (legend) and the # last few lines of the time_series.dat file. # echo "" cat data/legend.dat tail data/time_series.dat | grep -v "#" # # This script also appends the last line of the time_series.dat file at # this moment to the SPEED file. It is called that way because it allows # you, among other things, to assess easily the speed of the simulation. # [ -f data/proc0/alive.info ] && cat data/proc0/alive.info >> SPEED (date; tail -1 data/time_series.dat;echo "") >>SPEED