**** camonitor_sort.pl 1.0 -- sorts a log-file created by camonitor by timestamp ****
                            Goetz Pfeiffer 2005

Syntax:
  camonitor_sort.pl {options} 

  Note: every regexp that starts with '!' is a "do not match" regexp. In this
  case theresults are the ones that DO NOT match.

  options:
    -h: help
    --summary: give a summary of the script
    -f [file]: read that file, otherwise read STDIN
    -n [regexp]: filter record names (records must match this)
    -t [regexp]: filter times (times must match this)
      examples:
        -t 2006-09-14
	  print only from that date
	-t '2006-09-14 23'
	  print only from 2006-09-14, 23:00 to 23:59
	-t '2006-09-14 (22|23)'
	  print only from 2006-09-14, 22:00 to 23:59
    -v [regexp]: filter values (values must match this)	 
      examples
        -v 'd+'
	  print only records where the value is an integer
	-v '(enabled|disabled)'
	  print only records where the value is "enabled" or "disabled"  
    -r [regexp] print only lines where the LINE matches the regexp
    -p show progress on STDERR
    --rm-tmstamp remove timestamps in output