diff --git a/documentation/current/eiffelstudio/eiffelstudio-guided-tour/command-line-compiler.wiki b/documentation/current/eiffelstudio/eiffelstudio-guided-tour/command-line-compiler.wiki
index 2fcbb086..93c52360 100644
--- a/documentation/current/eiffelstudio/eiffelstudio-guided-tour/command-line-compiler.wiki
+++ b/documentation/current/eiffelstudio/eiffelstudio-guided-tour/command-line-compiler.wiki
@@ -5,3 +5,6 @@ Along with compilation from within EiffelStudio, it is possible to start compila
Click [[EiffelStudio: Command line options|here]] to see how to use the command line compiler and the set of supported options.
+
+
+
diff --git a/documentation/current/eiffelstudio/eiffelstudio-reference/compiler/command-line/eiffelstudio-using-command-line-options.wiki b/documentation/current/eiffelstudio/eiffelstudio-reference/compiler/command-line/eiffelstudio-using-command-line-options.wiki
index 51cb5643..b0e1960d 100644
--- a/documentation/current/eiffelstudio/eiffelstudio-reference/compiler/command-line/eiffelstudio-using-command-line-options.wiki
+++ b/documentation/current/eiffelstudio/eiffelstudio-reference/compiler/command-line/eiffelstudio-using-command-line-options.wiki
@@ -4,19 +4,67 @@
[[Property:uuid|a6b6a676-8660-ce2d-6f37-03de7f23a78e]]
==Compiling and viewing==
-You may start ec through a command in one of the following forms:
-:'''ec''' ''option'' ... [''class_name''][''feature_name'']
-:'''ec''' ''option'' ... [''class_file_name'' [-library ''library_name'']]
+The Eiffel Compiler line mode command '''ec''' has many options, as you can see from the tables below. It may be helpful to think of any one '''ec''' command as either a command to compile or a command to view software text.
-In the first form:
+===Commands for compiling===
-''class_name'', if present, must be the name of a class of the system to which '''ec''' is applied. This system is identified by its configuration file; by default this is the file called Ace.ecf in the working directory, but you can select any other one through the -config ''file_name'' option. Similarly, the default project directory is the working directory, but you can select another through the -project_path ''directory_name'' option.
+The simplest compiling command you can enter is:
-''feature_name'', if present, must be the final name of a feature of the class called ''class_name''.
+
+ ec
+
-In the second form:
+The command does not include any of the ''Compiling options'' shown below, so the default option "-melt" is used. The "-config" is omitted, so '''ec''' will try to find a configuration file named Ace.ecf in the current directory.
-''class_file_name'', is the name of a file in the working directory which is assumed to contain the root class of a system to be compiled. The presence of a configuration file is not assumed, so this form can be used to compile a system from a root class and no configuration file. A configuration file will be built with default system and root cluster names based on the name of the root class. Other class files in the working directory will be used if necessary, as will EiffelBase, plus any library specified with the ''-library'' option.
+The command:
+
+
+ ec -config my_config_file.ecf
+
+
+melts the system having the configuration file in the current directory my_config_file.ecf .
+
+To freeze or finalize that system, you would just include the appropriate ''Compiling option'':
+
+
+ ec -freeze -config my_config_file.ecf
+
+
+You can specify the name of a file which contains the root class of a system in the current directory:
+
+
+ ec application.e
+
+
+This command will compile a system with the class in application.e as its root. If there is no configuration file named application.ecf, then '''ec''' will create one. It will also use any classes in the current working directory and by default the library EiffelBase. You can add additional libraries to the by using the "-library" option and specifying either the short name of one of the EiffelStudio libraries or a path to a library configuration file.
+
+To include EiffelTime in the compilation of application.e, you could use this command:
+
+
+ ec application.e -library time
+
+
+This immediately adds the EiffelTime library to the configuration file application.ecf, so if you compile again, it is not necessary to respecify the library.
+
+===Commands for viewing===
+
+By selecting certain options on the '''ec''' command, you can generate advanced views of your software much like those provided by EiffelStudio. In the table below you will see the set of ''Viewing options''. These options take arguments that are either a class name or a class name and feature name. The following examples will give you an idea of how to use the ''Viewing options''.
+
+To see the "flat" form of class APPLICATION in the example used above:
+
+
+ ec -flat application -config application.ecf
+
+
+To save the output, add the "-file" option with a file name:
+
+
+ ec -flat application -config application.ecf -file application_flat_form.txt
+
+
+
+
+===Command options===
The table below lists the available ''options'', the arguments they require, and their effect:
@@ -127,7 +175,7 @@ The table below lists the available ''options'', the arguments they require, and
|-
| -library
| library_name
-| Library is included in the compile when a ''class_file_name'' is given.
+| Library is included in the configuration when a file name for the root class is given.
|-
| -loop
|