How to Submit your Programs
If you are submitting under Windows
Follow the following steps.
-
If you are working from home, download the submission program from the
course homepage and go to step 7.
-
Go to one of the LRC Windows machines.
-
Double click on the "My Computer" icon.
-
Double click on the "LRCApps" drive.
-
Double click on the "ee379k" folder.
-
Double click on the "Submit" folder.
-
Double click on the "Submit-ITC" program.
-
Type in your ECE login name.
-
Select the file that you want to submit.
-
Select the unique number of the discussion section in which you would like
the assignment returned to you.
-
Select the program number. For programming assignment 1, you should select
either 1shift or 1rotate depending on whether you are submitting
the shift or rotate program.
-
Click the "submit" button.
-
Read your ECE email to check for the confirmation that your program
has been received correctly.
-
If you don't get a confirmation after 10 minutes, email your TA.
You are done!
If you are submitting under Unix (This includes using telnet.)
Follow the following steps.
-
Telnet to one of the ECE machines
telnet tick.ece.utexas.edu
Perform the step "Setting your path" below.
-
Change into the directory containing the program files you want to submit.
If your files are located in the current directory, you can skip to the
next step.
-
Submit the program using the submit script submit-itc. The submit
script uses the following format.
submit-itc <name_of_file> <program_number>
For the program_number, use the same number as the programming assignment.
For the 1st programming assignment, you would use the command
submit-itc shift.bin 1shift
or
submit-itc rotate.bin 1rotate
-
Read your ECE email to check for the confirmation that your program
has been received correctly.
-
If you don't get a confirmation after 10 minutes, email your TA.
You are done!
Setting your path (for Unix only)
You need to perform the following steps only if you work in Unix.
After you have telnet to an ECE machine, type the following commands.
-
Change into your home directory
cd
-
Open your .cshrc file using the PICO text editor
pico .cshrc
-
Add the following line after the last line of this file. This line adds
the lc2 directory to your path.
set path = (/usr/local/packages/lc2/bin $path)
-
Save and exit the file by typing CTRL-X and pressing 'Y' at the prompt.