How do I get my Java programs from my home computer to the University Unix machine for submission? Answer: You will need to use some ftp program to transfer the file to your CATS (Unix) account. Two choices are: plain old ftp (type ftp teach.ic.ucsc.edu at a console prompt) http://www2.ucsc.edu/cats/sc/software/ftp/doc/handout.shtml or WS_FTP http://www2.ucsc.edu/cats/sc/software/ws_ftp/, or Once the file is there you should run dos2unix MySourceFile.java > temp then type mv temp MySourceFile.java when it asks if you want to overwrite MySourceFile.java, say yes. You should then view the resulting file (MySourceFile.java) with a standard editor just as emacs, vi, or pico, and make sure that the indenting etc. is still ok.