Schedule
Labs
Assignments
TA office hours
Topic videos
Some course notes
Extra problems
Lecture recordings
a)
a=3 b=4 c=5 expr $a + $b$c
b)
echo hello | wc -c (echo hello; echo goodbye) | wc -l (echo hello; echo goodbye) | sort(recall that "wc -c" counts characters (bytes) and "wc -l" counts lines)
a)
48
b)
6 2 goodbye hello(the indentation of the 6 and 2 was ignored in grading, of course)