Admin/profiling_reports
author blanchet
Sat, 11 Aug 2012 15:54:18 +0200
changeset 48766 553ad5f99968
parent 44152 a07748619f53
permissions -rwxr-xr-x
fixed "double rev" bug that arose in situations where a % comment arose on the last line of a file without \n at the end

#!/usr/bin/env bash
#
# Author: Makarius
#
# DESCRIPTION: Cumulative reports for Poly/ML profiling output.

THIS="$(cd $(dirname "$0"); pwd)"

SRC="$1"
DST="$2"

mkdir -p "$DST"

for FILE in "$SRC"/*.gz
do
  echo "$FILE"
  NAME="$(basename "$FILE" .gz)"
  gzip -dc "$FILE" | "$THIS/profiling_report" > "$DST/$NAME"
done