Skip to content

Commit

Permalink
Update script to run fixed variable example in batch
Browse files Browse the repository at this point in the history
  • Loading branch information
Viviane Rochon Montplaisir committed Apr 21, 2021
1 parent 24ac8b9 commit 69ce00c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions examples/advanced/batch/FixedVariable/runFixed.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@
rm -f cache.txt out1 out2 out3 out10
# Fix 0-2
echo "Fix 0-2"
nomad param1.txt >& out1
$NOMAD_HOME/bin/nomad param1.txt >& out1
echo "Cache size: "; wc -l cache.txt
# Fix 2-3
echo "Fix 2-3"
nomad param2.txt >& out2
$NOMAD_HOME/bin/nomad param2.txt >& out2
echo "Cache size: "; wc -l cache.txt
# Fix 3-4
echo "Fix 3-4"
nomad param3.txt >& out3
$NOMAD_HOME/bin/nomad param3.txt >& out3
echo "Cache size: "; wc -l cache.txt
# Fix nothing
echo "Fix nothing"
nomad param10.txt >& out10
$NOMAD_HOME/bin/nomad param10.txt >& out10
echo "Cache size: "; wc -l cache.txt

0 comments on commit 69ce00c

Please sign in to comment.