Skip to content

Commit

Permalink
tests/make_graph: Remove double quotes for numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
suizman committed Dec 5, 2018
1 parent e4ee6a1 commit 05e890f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/make_graph
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ all() {
done | awk '{ sub("ms", "", $5); sub("%", "", $6); print }' | sort -k7,7 -k1,1n > /tmp/data


while dialog --stdout --menu 'Choose function' 80 93 100 $(cat /tmp/data | awk '{ print $7; }' | sort -u | awk 'BEGIN { OFS=" \""; ORS="\" ";} {print $0, ++n}') > /tmp/function
while dialog --stdout --menu 'Choose function' 80 93 100 $(cat /tmp/data | awk '{ print $7; }' | sort -u | awk '{print $0, ++n}') > /tmp/function
do
func_name=$(cat /tmp/data | grep -o -F $(cat /tmp/function) | uniq)
echo $func_name
Expand Down

0 comments on commit 05e890f

Please sign in to comment.