jmarwan
Technical User
- Aug 5, 2003
- 41
i went to execute a bloc of instruction when the condition if is true :
if($arg == $indexe[0])
{
exec " /opt/OV/bin/script1 xxxxxxx ";
exec " /opt/OV/bin/script2 yyyyyyy ";
}
when the condition is true, only the first command is executed even if I permute the first commande with the seconde one.
many thanks,
if($arg == $indexe[0])
{
exec " /opt/OV/bin/script1 xxxxxxx ";
exec " /opt/OV/bin/script2 yyyyyyy ";
}
when the condition is true, only the first command is executed even if I permute the first commande with the seconde one.
many thanks,