summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2016-10-22 19:31:08 -0300
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2016-10-22 19:31:08 -0300
commit670027c507e99521d416994a18a498def9ef2ea3 (patch)
tree74b4d761a9e7904a4f8aa4b58b2dc9801f22284d /scripts
parentd0b2f91bede3bd5e3d24dd6803e56eee959c1797 (diff)
Linux-libre 4.8.3-gnupck-4.8.3-gnu
Diffstat (limited to 'scripts')
-rw-r--r--scripts/tuxonice_output_to_csv.sh35
1 files changed, 0 insertions, 35 deletions
diff --git a/scripts/tuxonice_output_to_csv.sh b/scripts/tuxonice_output_to_csv.sh
deleted file mode 100644
index b96e6803b..000000000
--- a/scripts/tuxonice_output_to_csv.sh
+++ /dev/null
@@ -1,35 +0,0 @@
-#!/bin/bash
-
-cat $1 | grep "\*TOI\*" | cut -b 22- | sed "s/ /,/g" | sed "s/\.//" | sort -n > $1.tmp
-COLUMNS=$(cat $1.tmp | awk -F ',' ' { print $2 } ' | sort | uniq)
-echo -n "pfn," > $1.tmp2
-for NAME in $COLUMNS; do
- echo -n "$NAME," >> $1.tmp2
-done
-echo >> $1.tmp2
-FIRST=1
-declare -A data
-while IFS=, read -r pfn column value; do
- if [ $FIRST -eq 1 ]; then
- FIRST=0
- LAST_PFN=$pfn
- fi
- if [ $pfn -ne $LAST_PFN ]; then
- echo -n "$LAST_PFN," >> $1.tmp2;
- for NAME in $COLUMNS; do
- echo -n "${data[$NAME]}," >> $1.tmp2
- done
- data=( )
- echo >> $1.tmp2
- LAST_PFN=$pfn
- fi
- if [ -z "$value" ]; then
- data[$column]=X
- else
- data[$column]=$value
- fi
-done < $1.tmp
-mv $1.tmp2 $1.csv
-rm $1.tmp
-LIBREOFFICE=$(which libreoffice)
-[ -n "$LIBREOFFICE" ] && libreoffice $1.csv &