My id is student00A

       my home dir is /home/student00A



       Your assignment:

       1) remove your play dir, including all it's contents
           cd <- to get to my home dir
           rm -r play <- empty the dir then remove it


       2) make a new dir off your home dir named data
           cd
           mkdir data <- relative play off the current dir


       3) copy all the files from my data dir to your data dir
           including any sub-dirs in my data dir
           
           cp -r /home/student00A/data/* data <- call all non-hidden files


       4) create a new dir named scripts off your home dir
           copy the following files from my scripts dir to your scripts dir
           
           mkdir scripts

              any file that ends with .py
          cp ~student00A/scripts/*.py  scripts
          
              any file that ends with .pl
          cp ~student00A/scripts/*.pl  scripts
          
              any file that starts with a 'p'
           cp ~student00A/scripts/p*  scripts
           

        5) create an empty play dir off your home dir
             cd
             mkdir play
