Admin/profiling_reports
author blanchet
Fri, 20 Jul 2012 22:19:46 +0200
changeset 49404 65679f12df4c
parent 45023 a07748619f53
permissions -rwxr-xr-x
eliminated special handling of init case, now that "mash.py" has been optimized to handle sequences of add gracefully
     1 #!/usr/bin/env bash
     2 #
     3 # Author: Makarius
     4 #
     5 # DESCRIPTION: Cumulative reports for Poly/ML profiling output.
     6 
     7 THIS="$(cd $(dirname "$0"); pwd)"
     8 
     9 SRC="$1"
    10 DST="$2"
    11 
    12 mkdir -p "$DST"
    13 
    14 for FILE in "$SRC"/*.gz
    15 do
    16   echo "$FILE"
    17   NAME="$(basename "$FILE" .gz)"
    18   gzip -dc "$FILE" | "$THIS/profiling_report" > "$DST/$NAME"
    19 done