/** * @authors * In here describe what the program does so * the "man on the moon" can use it. */ public class CopyImage { public static void main(String[] args) { if(len(args) < 2) { System.err.println("Two command line arguments are required"); Systm.exit(1); } String donor = args[0]; String recipient = args[1]; //Write a program that will copy the donor file to the recipient. //Ask before clobbeirng any existing file //Test it on various image files. } }