home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2004 April
/
CMCD0404.ISO
/
Software
/
Shareware
/
Comunicatii
/
advwebrank
/
awr.msi
/
disk1.cab
/
bsh_1.2b6.jar
/
bsh
/
commands
/
show.bsh
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
2002-05-24
|
305 b
|
15 lines
/**
Toggle on or off displaying the results of expressions (off by default).
When show mode is on bsh will print() the value returned by each expression
you type on the command line.
*/
bsh.help.show = "usage: show()";
show() {
if ( bsh.show == void )
bsh.show = false;
bsh.show = !bsh.show;
}