A
Print README file on printer
print readme;
pause
B
Print DABUTIL2.REG file on printer (Registration Form)
print dabutil2.reg;
pause
C
Demonstrate CATALOG (Formatted list of all files on disk)
echo catalog -all;
catalog -all;
pause
D
Demonstrate DI      (Information about disk format)
echo di;
di;
pause
E
Demonstrate DIRM    (Directory manager)
dirm
F
Demonstrate DOSMENU (DOS Menu utility; example use with SETPRT)
dosmenu printer.txt
G
Demonstrate DOW     (DOW returns weekday; Z.BAT displays day)
echo z;
z;
pause
H
Demonstrate DTIME   (Formatted display of date and time)
dtime;
pause
I
Demonstrate ENC     (Simple file encryption)
echo Encrypting PRINTER.BAT with password "unicorn"- Original file:;
type printer.bat;
pause;
enc printer.bat go.enc unicorn;
echo Encrypted file:;
type go.enc;
pause;
enc go.enc go.une unicorn;
echo un-Encrypted file:;
type go.une;
erase go.enc;
erase go.une;
pause
J
Demonstrate EVENTMAN (Set up unattended program execution)
eventman
K
Demonstrate FF      (Find all occurences of files on disk) 
echo ff *.com;
ff *.com;
pause;
echo ff *.exe -a;
ff *.exe -a;
pause
L
Demonstrate FILEMAN (File Manager;Copy, Move, Delete, Edit, Attr)
fileman
M
Demonstrate LD      (List all directories on disk)
echo ld;
ld;
pause;
echo ld -s;
ld -s;
pause
N
Demonstrate PROCESS (Real-time execution of events and processes)
process
O
Demonstrate SBE     (Text file editor)
sbe readme
P
Demonstrate SD      (Sort current directory)
sd endts;
dir;
pause
Q
Demonstrate SETPRT  (Set Printer parameters and fonts)
echo SETPRT \10 \10 "Test string" \10 \10;
SETPRT \10 \10 "Test string" \10 \10;
pause