This command parse a command line into an execline script.
In an execlineb script:
execl-cmdline -S { command }
execl-cmdline should be used at the end of the execline scripts. If you want run another program after the call of execl-cmdline you need to use e.g if command, foreground, background, ...
The following command:
execl-cmdline { /usr/bin/ntpd -d "" -S }will give:
/usr/bin/ntpd "-d" "-S"
The following command:
execl-cmdline -S { /usr/bin/ntpd "-d -S" }will give:
/usr/bin/ntpd "-d" "-S"
To run another program after the call of execl-cmdline program:
foreground { execl-cmdline { /usr/bin/ntpd -d "" -S } }