/* @(#)osycoms.h 14.1.1.1 (ESO-IPG) 09/16/99 10:01:50 */ /* ------------------------------ OSYCOMS ------------------------------ definitions of operating system commands on file mid_include:osycoms.h */ #define OSY_COMCOUNT 10 static char *OSY_COMS[] = { "DIR", "COPY", "@", "DELCNF", "DELETE", "RENAME", "TYPE", "MORE", "PURGE", "PRINT" }; #if vms static char *OSY_DEFS[] = { "$DIREC", "$COPY", "$@", "$DELETE/CONF", "$DELETE/NOCONF", "$RENAME", "$TYPE", "$TYPE/P", "$PURGE", "$PRINT" }; #else static char *OSY_DEFS[] = { "$ls", "$cp", "$sh", "$rm -i", "$rm -f", "$mv", "$cat", "$page", "$ ", "$lpr" }; #endif /* operating system commands are indicated via -comnd where comnd defined above in OSY_COMS K. Banse version 1.65 900926 ----------------------------------------------------------------------- */