From c8ae68f19b0560e108b516f55aff2e828a407b13 Mon Sep 17 00:00:00 2001 From: "John B. Matthews" Date: Tue, 27 May 2008 04:07:59 +0000 Subject: [PATCH] Incorporate command-line guide in web site; update ac javadoc. --- src/com/webcodepro/applecommander/ui/ac.java | 24 ++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/src/com/webcodepro/applecommander/ui/ac.java b/src/com/webcodepro/applecommander/ui/ac.java index 366b599..0de7473 100644 --- a/src/com/webcodepro/applecommander/ui/ac.java +++ b/src/com/webcodepro/applecommander/ui/ac.java @@ -43,6 +43,30 @@ import com.webcodepro.applecommander.storage.physical.ProdosOrder; import com.webcodepro.applecommander.util.AppleUtil; import com.webcodepro.applecommander.util.TextBundle; +/** + * ac provides a command line interface to key AppleCommander functions. + * Text similar to this is produced in response to the -h option. + *
+ *   AppleCommander command line options [version]:
+ *   -i  <imagename> display information about image.
+ *   -ls <imagename> list brief directory of image.
+ *   -l  <imagename> list directory of image.
+ *   -ll <imagename> list detailed directory of image.
+ *   -e  <imagename> <filename> export file from image to stdout.
+ *   -g  <imagename> <filename> get raw file from image to stdout.
+ *   -p  <imagename> <filename> <type> [[$|0x]<addr>] put stdin
+ *       in filename on image, using file type and address [0x2000].
+ *   -d  <imagename> <filename> delete file from image.
+ *   -cc65 <imagename> <filename> <type> put stdin with cc65 header
+ *         in filename on image, using file type and address from header.
+ *   -dos140 <imagename> create a 140K DOS 3.3 image.
+ *   -pro140 <imagename> <volname> create a 140K ProDOS image.
+ *   -pro800 <imagename> <volname> create an 800K ProDOS image.
+ *   -pas140 <imagename> <volname> create a 140K Pascal image.
+ *   -pas800 <imagename> <volname> create an 800K Pascal image.
+ * 
+ * @author John B. Matthews + */ public class ac { private static TextBundle textBundle = UiBundle.getInstance();