Hi, is it possible to break the body of an "if"? something like:
--------------
if $fU == "alice" {
xlog "hello";
break;
xlog "bye";
}
xlog "this is after the 'if'"
--------------
So the result would be:
-------
hello
this is after the 'if'
-------
Is it possible?
--
Iñaki Baz Castillo
Show replies by date