home *** CD-ROM | disk | FTP | other *** search
- @echo off
- rem The Shareware version of Windows Command does not allow execution of
- rem batch files. This file was included with the shareware package to
- rem demonstrate one of the many uses for batch files in Windows Command.
- rem These commands may be entered at the command line to make the Windows
- rem Command interface resemble a Unix-type system.
- alias rm del %%*%%
- alias ls dir /4 %%*%%
- alias mv move %%*%%
- alias cp copy %%*%%
- alias ps task
- alias fg maximize %%1%%
- alias bg minimize %%1%%
- alias kill close %%1%%
- alias man help %%*%%
- alias chmod attrib %%*%%
- alias du mem
- alias vi notepad %%*%%
- alias ex notepad %%*%%
- alias edit notepad %%*%%
- alias lpr print %%*%%
- alias whatis help %%*%%
- alias clear cls
- alias setenv eset %%*%%
- prompt $p%%
-