openb Command
Purpose:
Returns a file handle to a new or existing file in binary mode.
Syntax:
openb(filename)
Comments:
If filename does not exist, a new file is created.
when writing binary files integers must be between 0 and 255 or > -255
Example:
ii = 1,0,200,300
han = openb("test.dat")
p han,ii
p han,"line 2"
close han