Do we have to revoke your /halt privileges?

There are VERY few places where using /halt is necessary. In almost all cases, you should use the /return command. It has the added bonus of being able to return a message to the calling script. Example:

Code:
alias a.one {
  a.two $1
  if ($result) echo -a /a.two succeeded
  else echo -a /a.two failed
}
alias a.two {
  if ($check.something($1)) return 0
  do.something $1
  return 1
}


-genius_at_work