From Bugzilla Helper: User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.7.12) Gecko/20050915 Firefox/1.0.7 Description of problem: Even if the correct command is entered (as shown in the grading script) Deliverable #2 always grades as incorrect, giving 7 out of 10 points with the message "6 files" for Deliverable #6 (the files pasted together). Instructions read: The following script can be used to print a series of 10 random numbers. #!/bin/bash for i in $(seq 10); do echo $RANDOM done Create the script in a file of your choosing, and make the file executable. Execute the script 5 separate times, each time recording the output in a file named ~/trial1, ~/trial2, ~/trial3, etc. Create a file called titles, which contains the words run1, run2, ... run10, one per line, on each of ten lines. Use the paste command to combine the files named titles, trial1, trial2, trial3 trial4, and trial5, in that order, into a file called trials. Use the default TAB character to separate the columns. Version-Release number of selected component (if applicable): How reproducible: Always Steps to Reproduce: 1.Complete Online Exercise 2.Grade Exercise 3. Actual Results: Instead of marking the item as correct, 7 out of 10 points are awarded. Expected Results: The item should be marked as correct (10 out of 10 points) Additional info: