packaging/perftest/unipi/plot.sh: Removed now unneccesary 'echo'
This commit is contained in:
parent
8a45a3e522
commit
8c776912f7
1 changed files with 7 additions and 6 deletions
|
@ -42,11 +42,11 @@ while read UUID; do
|
||||||
|
|
||||||
if [ $N = 1 ]; then
|
if [ $N = 1 ]; then
|
||||||
echo -n "# Build UUID - "
|
echo -n "# Build UUID - "
|
||||||
echo $(cat "$CSV" | head -n1 | cut -d, -f"$COLS" \
|
cat "$CSV" | head -n1 | cut -d, -f"$COLS" \
|
||||||
| sed 's/,//g' \
|
| sed 's/,//g' \
|
||||||
| sed 's/ \+//' \
|
| sed 's/ \+//' \
|
||||||
| sed 's/\( \+\)/ -\1/g' \
|
| sed 's/\( \+\)/ -\1/g' \
|
||||||
) > "$DAT"
|
> "$DAT"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
#goto validate csv file, and on invalid: append error-data instead
|
#goto validate csv file, and on invalid: append error-data instead
|
||||||
|
@ -54,7 +54,8 @@ while read UUID; do
|
||||||
echo -n "$UUID " >> "$DAT"
|
echo -n "$UUID " >> "$DAT"
|
||||||
cat "$CSV" | tail +2 | cut -d, -f"$COLS" \
|
cat "$CSV" | tail +2 | cut -d, -f"$COLS" \
|
||||||
| sed 's/,//g' \
|
| sed 's/,//g' \
|
||||||
| sed 's/ \+//' >> "$DAT"
|
| sed 's/ \+//' \
|
||||||
|
>> "$DAT"
|
||||||
|
|
||||||
N=$(($N + 1))
|
N=$(($N + 1))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue