Changeset 16211
- Timestamp:
- Jan 23, 2008, 2:24:47 PM (18 years ago)
- Location:
- trunk/Ohana/src/opihi/cmd.basic
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana/src/opihi/cmd.basic/Makefile
r16168 r16211 22 22 $(SRC)/config.$(ARCH).o \ 23 23 $(SRC)/continue.$(ARCH).o \ 24 $(SRC)/dirname.$(ARCH).o \ 24 25 $(SRC)/date.$(ARCH).o \ 25 26 $(SRC)/echo.$(ARCH).o \ … … 34 35 $(SRC)/macro.$(ARCH).o \ 35 36 $(SRC)/memory.$(ARCH).o \ 37 $(SRC)/mkdir.$(ARCH).o \ 36 38 $(SRC)/module.$(ARCH).o \ 37 39 $(SRC)/output.$(ARCH).o \ -
trunk/Ohana/src/opihi/cmd.basic/init.c
r16168 r16211 6 6 int cd PROTO((int, char **)); 7 7 int date PROTO((int, char **)); 8 int dirname_opihi PROTO((int, char **)); 8 9 int echo PROTO((int, char **)); 9 10 int exec_last PROTO((int, char **)); … … 20 21 int macro PROTO((int, char **)); 21 22 int memory PROTO((int, char **)); 23 int mkdir_opihi PROTO((int, char **)); 22 24 int module PROTO((int, char **)); 23 25 int output PROTO((int, char **)); … … 45 47 {"cd", cd, "change directory"}, 46 48 {"date", date, "get current date"}, 49 {"dirname", dirname_opihi, "built-in dirname function"}, 47 50 {"echo", echo, "type this line *"}, 48 51 {"break", exec_break, "escape from function *"}, … … 61 64 {"macro", macro, "deal with the macros *"}, 62 65 {"memory", memory, "long listing of the allocated memory"}, 66 {"mkdir", mkdir_opihi, "built-in mkdir command"}, 63 67 {"module", module, "load script file from the modules directories"}, 64 68 {"output", output, "redirect output to file"},
Note:
See TracChangeset
for help on using the changeset viewer.
