home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Professional
/
OS2PRO194.ISO
/
os2
/
sysutils
/
ezos
/
ezos.doc
next >
Wrap
Text File
|
1990-09-26
|
47KB
|
1,172 lines
EZOS2
PURPOSE
The purpose of this program is make OS2 and DOS easier to use. EZOS
enhances existing commands and adds new commands. There is a HELP
command if a summary of available commands is needed. If you enter
a command that is not a part of this program, it will be passed to
OS2 for execution.
If you have ever been frustrated with the need to use uppercase
characters such as the colon ":" and asterisk "*" in OS2 commands,
EZOS will help. If you think it would be easier to type DB to get a
directory listing for drive B: instead of typing DIR B:, then EZOS
may be what you are looking for. If you think you should be able to
use the function keys to enter data of your choice, you will want to
try EZOS. When you get a directory listing, do you ever want to
know how much space the files use on the disk? EZOS does all this
and more.
I have spent a lot of time trying to make OS2 and DOS easier to use.
EZOS is the result. It gives you shorter commands with no uppercase
characters required. This makes typing easier. I have added commands
to do the things OS2 forgot, like moving files between directories,
checking file dates before doing a copy, etc.
EZOS is a family application, so it will also run under DOS or in the
DOS compatibility session of OS/2 as well as in protected mode.
I hope you find EZOS as helpful as I have. If you think this
program will be useful to you, please send a small donation ($10?)
to Pam Chambers, 313 Red River Trail, Irving TX 75063. Thank you.
REQUIREMENTS
EZOS has been tested on the following systems: IBM PC/AT, IBM
convertible, and IBM PS/2 under both OS/2, DOS, and Windows, as well
as on other brands of PC.
EXECUTION
To execute EZOS, enter EZOS, followed by a command, data, and switches,
as required.
COMMAND LINE EDITOR
EZOS contains a very convenient editor for the command line. If you
make a typing error, you can move the cursor along the command line to
make the correction character by character with the left and right
arrow keys or word by word with the Ctrl-arrow key combination. The
delete key will remove the character at the cursor location from the
command line, while the insert key will allow you to enter new
characters at the cursor location. You will see a block cursor while
in INSERT mode. The HOME key moves the cursor to the start of the
line, while the END key moves it to the end. You can delete the
characters from the cursor position to the end of the line with the
CTRL-END combination.
There is a buffer for the last 16 commands. By using the up arrow
key, you can move backward through this buffer, while the down arrow
key moves you forward.
If you are working through the buffer sequentially, to avoid having to
hit both the up and down arrow keys to get the next buffered command,
the 5 key on the numeric pad (protected mode only) or the PgUp key will
recall the next command in the buffer.
As the commands are displayed, you can use the other keys to edit the
command.
FUNCTION KEYS
Function keys can be used to make command typing easier. Keys
F1-F12 and shifted F1-F12 are associated with text strings as
defined in the environment. For example, to set key F1 to the
string "CD C:\PROGRAMS" you enter the command "SET F1=CD
C:\PROGRAMS" before starting EZOS. Use SET SF1=xxx for the shifted
F keys.
To get trailing blanks included with the string, end the string with an
apostrophe ('). For example, to get the string "EDIT " associated with
the F6 key, enter the command SET F6=EDIT '. If that does not look
neat enough, you can also enter it as SET F6='EDIT '. An apostrophe
will not be included as part of the string unless there are two of them
together in the environment string (''). (That was the only way I
could figure out to get trailing blanks in the strings!)
You can also include the return key as part of the string. This is
done by adding the character ALT+1 at the end of the string. When
the specified F key is pressed, the string will be typed, followed
by the enter key. For example, to associate the F1 key with the
command CD C:\PROGRAMS(enter), enter the following command "SET
F1=CD C:\PROGRAMS". (Alt+1 displays as the happy face.) EZOS will
then type the string and hit the enter key for you when you press
the F1 key.
It is also possible to concatenate commands. Since you can't enter
the '&' sign into the environment except from CONFIG.SYS in OS/2,
you can use ALT+2 to do this. If you want to execute the commands
"C: enter" and "CD \PROGRAMS enter" with the F1 key, enter "SET
F1=C: CD \PROGRAMS