home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 579a.lha / sqldb_v1.0alpha2 / doc / sqldb_cmdshellrefman.doc < prev    next >
Text File  |  1991-11-22  |  2KB  |  95 lines

  1. 1.0
  2. Introduction
  3.  
  4.     The command shell is a line oriented user interface.  Commands are
  5.     typed and the results are displayed on the screen.  The commands shell
  6.     is similar in operation to the Unix csh(1) program.
  7.  
  8.     Commands may span physical lines.  Commands MUST be terminated with a
  9.     semi-colon ';'.
  10.  
  11.     Upon startup, the command shell will attempt to execute commands in
  12.     the file '.dbcshrc'.  If this file does not exist in the current
  13.     directory, the command shell will give an error message saying so, and
  14.     will continue.
  15.     
  16.     The following variables have special meaning to the command shell:
  17.  
  18.     Name        Default        Meaning
  19.     ----        -------        -------
  20.  
  21.     EDITOR        'z'        Editor to be used with EDIT COMMAND
  22.  
  23.     PROMPT        'dbcsh>'    Command shell prompt string
  24.  
  25.     HISTORY        25        Number of commands in history buffer
  26.  
  27.     
  28. 2.0
  29. History
  30.  
  31. 3.0
  32. Aliases
  33.  
  34. 4.0
  35. Variable
  36.  
  37. 5.0
  38.     Commands in the command shell
  39.  
  40. 5.1
  41.     EDIT COMMAND
  42.  
  43.     FORMAT: EDIT COMMAND history-number
  44.  
  45.     DESCRIPTION:
  46.     The edit command command lets you edit the specified command using your
  47.     favorite editor.
  48.  
  49. 5.2
  50.     EXIT
  51.  
  52.     FORMAT: EXIT
  53.  
  54.     DESCRIPTION:
  55.     The exit command will exit you from the command shell.  All non-system
  56.     table must be closed before you may exit.
  57.  
  58. 5.3
  59.     HISTORY
  60.  
  61.     FORMAT: HISTORY
  62.  
  63.     DESCRIPTION:
  64.     The history command displays a list of the history buffer.  Each entry
  65.     consists of the history number and the command text.
  66.  
  67. 5.4
  68.     SET
  69.  
  70.     FORMAT: SET [ variable-name = variable-value ]
  71.  
  72.     DESCRIPTION:
  73.     The set command lets you store values in command shell variables that
  74.     can be used later.  If the arguments to set are omitted, a listing of
  75.     all variables and values is produced.
  76.  
  77. 5.5
  78.     SYSTEM
  79.  
  80.     FORMAT: SYSTEM 'system-command'
  81.  
  82.     DESCRIPTION:
  83.     The system command allow you to execute a system command, such as
  84.     'dir' or 'll', without having to leave SQLdb.
  85.  
  86. 5.6
  87.     VERSION
  88.  
  89.     FORMAT: VERSION
  90.  
  91.     DESCRIPTION:
  92.     The version command displays the current version and any other
  93.     pertinent information.
  94.  
  95.