Schedule
Labs
Assignments
TA office hours
Topic videos
Some course notes
Extra problems
Lecture recordings
Write a 'while' loop in sh to output the numbers from 1 to 10, by starting with '1' and adding one to it each time around the loop to get the next number. (E.g. don't use seq.)
x=1
while test $x -le 10
do
echo $x
x=`expr $x + 1`
done