In Class: Week 3 Friday


From within your week03 subdirectory copy over my stars.py file.
Note: Do not copy over everything again (don't use * to match all files in my week03 subdirectory), or you will write over files from Monday and Wednesday that you alreay copied over.

If you already copied over stars.py, cp will ask if you want to overwrite your previous copy, type y to say "yes":

    % cd cs21/class/week03
    % pwd
      /home/your_user_name/cs21/class/week03

    % cp ~newhall/public/cs21/week03/stars.py  .
       cp: overwrite `./stars.py'?  y
	
I will put my solutions to in-class exercises in my public directory with files prefixed with tias_. You can copy over my solutions after class by doing:
    % cd cs21/class/week03
    % pwd
      /home/your_user_name/cs21/class/week03

    % cp ~newhall/public/cs21/week03/tia*  .
	
tia* matches all files whose name starts with tia