17 lines
625 B
Bash
Executable File
17 lines
625 B
Bash
Executable File
#!/bin/sh
|
|
if [ $# -ne 1 ]
|
|
then
|
|
echo "usage: $0 result-directory"
|
|
exit 0
|
|
fi
|
|
|
|
d=$1
|
|
|
|
awk '{ print $1 }' < $d/ram_index.d | sort -n | uniq > it
|
|
mkdir data
|
|
|
|
echo "from truncated data (.t) to graphed data data/XXX.d"
|
|
paste it $d/ram_index.t $d/cached_index.t $d/fifo_index.t $d/semi_index.t $d/uncached_index.t > ./data/index.d
|
|
paste it $d/ram_partitions.t $d/cached_partitions.t $d/fifo_partitions.t $d/semi_partitions.t $d/uncached_partitions.t > ./data/partitions.d
|
|
paste it $d/ram_tags.t $d/cached_tags.t $d/fifo_tags.t $d/semi_tags.t $d/uncached_tags.t > ./data/tags.d
|