You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Should use the following to process args rather than "while true" as this way we can force stop the processing of args when we only have one left as the last arg must be the sample name. Alternatively we should add a test after the "while true" loop to make sure we have one remaining argument.
while test $# -gt 1
do
echo $1
shift
done
The text was updated successfully, but these errors were encountered:
Should use the following to process args rather than "while true" as this way we can force stop the processing of args when we only have one left as the last arg must be the sample name. Alternatively we should add a test after the "while true" loop to make sure we have one remaining argument.
while test $# -gt 1
do
echo $1
shift
done
The text was updated successfully, but these errors were encountered: