Here are answers for the lab questions.
-> cd
-> pwd
The absolute pathname should begin with
/home/cs-students/. Following this should be your login
id.
-> oclock &
This will create a new window displaying an oval clock. If you
forget the & at the end of the command, you will no longer be
able to use the shell. See Lecture
Notes 2 for information on what to do in that case.
find ! -mtime 1
The -mtime flag finds files that have been modified in
the last n days. In this case we use 1 for the
n argument. Now, we want to know those that have not been
modified so we precede the -mtime argument with the not
operator, which is ! (as in C).