- 积分
- 412
- 实力分
- 点
- 金钱数
- 两
- 技术分
- 分
- 贡献分
- 分
|
发表于 2009-5-3 09:15:14
|
显示全部楼层
如果要修改主路径,可能要用到包里的这个文件“SETUP.INS”
但是v0.4里没有这个文件,不知为何?- Command.elf shell BAT-File 0.4
- http://cbn.narod.ru e-mail: cbn@yandex.ru (c) bn
- Performs basic commands MS-DOS: copy, move, ren, dir, mkdir, ... and a bunch of others
- Put in folder 0: \ ZBin \ DOS
- Add to extension.cfg lines:
- [bat]
- RUN = 0: \ ZBin \ DOS \ Command.elf
- The list of interpreted commands:
- CD (CHDIR), COPY, ECHO, REN (RENAME), REM, PATH, DIR, MEM, DATE, TIME,
- MD (MKDIR), RD (RMDIR), TYPE, VER, SET, DEL (ERASE).
- Description of commands, see the manual for MS-DOS.
- Teams cut several of its ability.
- The idea: to use command language BAT-file to your needs
- (installers etc).
- Short description:
- When you start running autoexec.bat
- Files with extensions. Bat,. Lnk,. Elf,. Dll searched in the current directory
- continue in the path PATH.
- You can use templates *.* commands (be careful
- with the command ERASE *.*)
- DIR command allows the redirection to a file:> Filename
- and search in subfolders if you have the key <
- For programmers: external command MS-DOS can be written as a DLL.
- Function DLL plug int main (int fcon, char * curdir, int argc, char ** argv)
- receives parameters: file handle console, current directory, the number of arguments and have the command line arguments
- The function should not contain SUBPROC (ElfKiller) and transferred to a DLL program elf2dll.exe.
- Version:
- 0.4 No withdrawal redirected to a text file Console.txt
- Support template type *.* and current directory, for example, copy *.* 0: \ ZBin
- Improved search engine launched by files PATH. Support. DLL
- 0.3 Completely rewritten almost all the teams.
- Removed various "fun" command: format, defrag, deltree ...
- 0.2 Added: launch bat, lnk, elf on the PATH, autoexec.bat,
- command: set, path, a heap of others
- 0.1 The first beta version
复制代码 |
|