
What you find in this directory
-------------------------------

Makefile:
	Creates the application "mycopy".

mycopy.c
	A normal file copy program. "mycopy A B" copies file A to file B 

text
	A file containing some text. To be copied.


Exercises:

	1.
	Look at the code in mycopy.c, run make and then copy the test
	file "text", which is provided in this directory.

	2.
 	Extend mycopy.c to use the GASS file module (read comments in
	mycopy.c). Modify Makefile, add the GASS_FILE-specific definitions.
	Recompile and try it out.

	3.
	Start a gass server somewhere (command: globus-gass-server -r -w).
	It will return a base URL on stdout. Try to copy a file to and from
	the server using GASS URLs and the mycopy program.

