summaryrefslogtreecommitdiff
path: root/doc/colm/0_03_commandline.adoc
diff options
context:
space:
mode:
Diffstat (limited to 'doc/colm/0_03_commandline.adoc')
-rw-r--r--doc/colm/0_03_commandline.adoc27
1 files changed, 27 insertions, 0 deletions
diff --git a/doc/colm/0_03_commandline.adoc b/doc/colm/0_03_commandline.adoc
new file mode 100644
index 00000000..980003b0
--- /dev/null
+++ b/doc/colm/0_03_commandline.adoc
@@ -0,0 +1,27 @@
+Commandline
+===========
+
+Let's start colm with the '--help' command line argument.
+
+----
+colm --help
+----
+
+NOTE: This reflects the development version 0.13.0.4;
+
+
+```usage: colm [options] file
+general:
+ -h, -H, -?, --help print this usage and exit
+ -v --version print version information and exit
+ -o <file> write output to <file>
+ -c compile only (don't produce binary)
+ -e <file> write C++ export header to <file>
+ -x <file> write C++ export code to <file>
+ -m <file> write C++ commit code to <file>
+ -a <file> additional code file to include in output program
+```
+
+This reveals us some more insights: it reads a 'colm' file and creates a object file with eventually cpp/h/x code.
+
+