Create a directory folder named Assign12 and save the files
     Create a directory (folder) named Assign12 and save the files related to this assignment into the folder.  Create a file named As12 that displays the time of day in am or pm notation, rather than in 24-hour clock time. Here\'s an example showing As12 run at night:  $date  thu Oct 10 19:21:46 EDT 2013  $./As12  7:21 pm  $  Use expert to convert from 24-hour clock time. 
  
  Solution
Mkdir assign12
 touch \"as12.backup.$(date)\"
 Cat> % date +\'%H:%M %p\'
---------------------------

