Skip to content
Snippets Groups Projects
Commit 7b240f98 authored by Rick Carback's avatar Rick Carback
Browse files

This should properly resolve the nick's

parent 30c1f465
No related branches found
No related tags found
No related merge requests found
......@@ -63,8 +63,7 @@ do
for nid in 1
do
nid=$((($cid % 4) + 1))
eval export NICK=$NICK${cid}
eval echo ${NICK${cid}}
eval NICK=\${NICK${cid}}
CLIENTCMD="../bin/client -f blob$cid$nid --numnodes 5 -s $LASTNODE -i $cid -d $nid -m \"Hello, $nid\" --nick $NICK"
eval $CLIENTCMD >> $CLIENTOUT/client$cid$nid.out 2>&1 &
RETVAL=$!
......@@ -91,7 +90,7 @@ do
for nid in 1
do
nid=$((($cid % 4) + 1))
eval NICK=$(echo $NICK${cid})
eval NICK=\${NICK${cid}}
CLIENTCMD="../bin/client -f blob$cid$nid --numnodes 5 -s $LASTNODE -i $cid -d $nid -m \"Hello, $nid\" --nick $NICK"
eval $CLIENTCMD >> $CLIENTOUT/client$cid$nid.out 2>&1 &
RETVAL=$!
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment