projects
/
unres.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Adam's changes
[unres.git]
/
source
/
wham
/
src-restraints-PM
/
a.sh
1
a=1
2
echo $a
3
while [ $a -lt 10 ]
4
do
5
a=`expr $a + 1`
6
done
7
echo $a
8
b=`expr $a / 5`
9
echo a=$a b=$b