File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -77,14 +77,14 @@ Semicolons `;` mark the end of a variable assignment or flow definition.
7777
7878A FLUX contains multiple command-moduls that are doing specific things. E.g.:
7979
80- ``` C
81- " file/path.mrc"
82- | open-file -> This opens the file of the provided `file/path.mrc`-path.
83- | as-lines - This reads the file by lines.
84- | decode-marc21 -> This decodes the data as binary marc21 into an internal format.
85- | fix(FLUX_DIR + " fix-marc21.fix" ) -> This executes the provided Fix-transformation.
86- | encode-json(prettyPrinting=" true" ) -> This encodes the transformed data as JSON-Format.
87- | write(" stdout" ) -> This writes the Json-Data to standard output.
80+ ``` c
81+ " file/path.mrc" // -> Provides incoming sTring e.g. filepath.
82+ | open-file // -> This opens the file of the provided `file/path.mrc`-path.
83+ | as-lines // -> This reads the file by lines.
84+ | decode-marc21 // -> This decodes the data as binary marc21 into an internal format.
85+ | fix(FLUX_DIR + " fix-marc21.fix" ) // -> This executes the provided Fix-transformation.
86+ | encode-json(prettyPrinting=" true" ) // -> This encodes the transformed data as JSON-Format.
87+ | write(" stdout" ) // -> This writes the Json-Data to standard output.
8888;
8989``````
9090
You can’t perform that action at this time.
0 commit comments