Skip to content

Latest commit

 

History

History
59 lines (43 loc) · 1.02 KB

File metadata and controls

59 lines (43 loc) · 1.02 KB

Start INDOLE

The basic way to start INDOLE is:

./indole

Specially, for windows command prompt users:

indole.exe

And windows powershell users:

.\indole.exe

Input Configuration

You can input the configuration xml after you start INDOLE, a configuration example is here:

<indole>
    <Manager>
        <Plugin name="OpenFileInterface">
            <FileName>src.txt</FileName>
        </Plugin>
        <Plugin name="CreateFileInterface">
            <FileName>dst.txt</FileName>
        </Plugin>
        <Connection x="0" y="1" size="8192"/>
        <Control name="BasicControl">
        </Control>
    </Manager>
</indole>

Send Configuration File to Stdin

You can send the configuration file to pipe while starting INDOLE

./indole < config.xml

Specially, for windows command prompt users:

indole.exe < config.xml

And windows powershell users:

cat config.xml | .\indole.exe