On unload

From Scriptwiki
Revision as of 09:54, 2 July 2007 by Cail (talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

The on UNLOAD event triggers in a script when the script is unloaded.

on <level>:UNLOAD:<commands>


Read access levels to get more info about the <level> field.

You can use this event to allow a script to cleanup, e.g. unsetting variables it did need.

Example

on *:UNLOAD: {
 echo -a Script xyz just unloaded.
 unset %xyz*
}

This example would at first echo that the script is unloaded and then unset all variables beginning with xyz.

See Also