<!ELEMENT execute ((param | prefix)*)> <!ATTLIST execute base CDATA #IMPLIED command CDATA #REQUIRED>
This element occurs in : Element : <alfs> | Element: <stage>
See also : Element: <param> | Element: <prefix>
The element execute is one of the top-level operation elements. It is used to execute any arbitrary system command.
The sub-element param contains parameters for the command.
The sub-element prefix contains any prefix data for the command to execute.
The attribute base allows you to specify the directory in which the command will be executed. See Element : <base>.
The attribute command contains the text of the command itself.
The first example is an execute command without a parameter.
<execute command="umount">
The equivalent bash script is :
echo Executing 'umount' umount