home *** CD-ROM | disk | FTP | other *** search
/ ftp.ee.pdx.edu / 2014.02.ftp.ee.pdx.edu.tar / ftp.ee.pdx.edu / pub / users / Harry / Blitz / version-1-0 / OSProject / p8 / help < prev    next >
Text File  |  2006-05-17  |  1KB  |  44 lines

  1. This shell is a Unix-like shell for the BLITZ Operating System.
  2.  
  3. At the prompt (%) you can enter a command.  "stdin" and "stdout" can be
  4. redirected using the "<" and ">" symbols.
  5.  
  6. Here are some examples:
  7.   hello
  8.     If it exists, the program named "hello" will be executed.
  9.   cat < fileA > fileB
  10.     As in Unix, except file lengths may not be changed.  Also,
  11.     both files must exist ahead of time.
  12.   cat > fileC
  13.     Copies from user input.  The shell is meant to be executed in raw
  14.     mode, so the typed output will not be echoed.  Type control-D
  15.     to terminate.
  16.   cat < script
  17.     Print out a file.
  18.   sh < script > fileD
  19.     This will execute a sub-shell, using commands from file script
  20.     as input.
  21.   exit
  22.     This command is built-in to the shell and will terminate it.
  23.  
  24. The BLITZ disk has these files to play with:
  25.   help  --  Which you are reading
  26.   fileA, fileB, fileC  --  Each of these has length 54
  27.   fileD --  A file of size 1500
  28.   script
  29.      This file contains the following commands:
  30.           cat < fileA
  31.           cat < help
  32.           cat < fileB
  33.           exit
  34.  
  35. Try this:
  36.   sh < script > fileD
  37.   cat < fileD
  38.  
  39. What this shell does not have:
  40.   piping, using the |
  41.   background computation, using &
  42.   any ability to pass command line arguments
  43.   a lot more
  44.