Skip to content
Snippets Groups Projects
Commit ce11c828 authored by Chris Greenshields's avatar Chris Greenshields
Browse files

foamMonitor: fixed bug in test syntax

parent fb5358ee
No related merge requests found
...@@ -155,7 +155,7 @@ for field in $KEYS ...@@ -155,7 +155,7 @@ for field in $KEYS
do do
i=$(expr $i + 1) i=$(expr $i + 1)
PLOTLINE="\"$FILE\" using 1:${i} with lines title \"$field\"" PLOTLINE="\"$FILE\" using 1:${i} with lines title \"$field\""
if [[ $i -lt $NCOLS ]] if [ $i -lt $NCOLS ]
then then
PLOTLINE="$PLOTLINE, \\" PLOTLINE="$PLOTLINE, \\"
fi fi
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment