Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Run Daffodil from the Command Line/Terminal

Windows

...

Install and Configure Cygwin to Run Daffodil

In the Windows Command Line (cmd.exe), CD to your local DFDL repository.  Default is likely "C:\Users\UserName\git\dfdl".

The command line of Daffodil is invoked through an auto-generated bash script. To generate the script type the following command:

Code Block
sbt stage

The script is created in daffodil-core/target/start

In Cygwin:

To execute daffodil:

Code Block
languagebash
$ ./daffodil-core/target/start <options>

To determine the usage, execute the script with the --help option

Code Block
languagebash
$ ./daffodil-core/target/start --help

Linux

The command line of Daffodil is invoked through an autogenerated bash script.

...