home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2007 June
/
PCWorld_2007-06_cd.bin
/
multimedia
/
ppsee
/
PPSeeSetup.exe
/
lib
/
bsh-commands-2.0b4.jar
/
bsh
/
commands
/
exit.bsh
< prev
next >
Wrap
Text File
|
2005-05-23
|
255b
|
13 lines
/**
Conditionally exit the virtual machine.
Call System.exit(0) unless bsh.system.shutdownOnExit == false.
*/
bsh.help.exit = "usage: exit()";
exit() {
// shutdown Java VM unless flagged
if ( bsh.system.shutdownOnExit != false )
System.exit(0);
}