Search notes:

SQLcl: liquibase generate-controlfile

SQL> liquibase generate-controlfile -changelog-file /home/rene/controller.xml
…
Controller created at /home/rene/controller.xml
…

SQL> host cat /home/rene/controller.xml
<?xml version="1.0" encoding="UTF-8"?>
<databaseChangeLog
  xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog
                      http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-latest.xsd">
  <include file="{filename.xml}"/>
</databaseChangeLog>
Note the line <include file="{filename.xml}"/>.

See also

A control file referencing the objects of a schema can be created with generate-schema.
The SQLcl command liquibase.

Index