<<<<< TERMINAL SCREEN DRAWING SUBROUTINE >>>>>>>>

UTERMINAL

                    TERMINAL                  

NEXT

 $V1$
                                              
     <<<<<< TIME POSE SUBROUTINE >>>>>>>>>

PAUSE

If they want to quit, do so

PAGETURNER

If they want to quit, do so
    <<<<<< 4 BOTTOM LINES CLEANING SUBROUTINE >>>>>>

ENCORE5

    <<<<<< REVIEW CLEANING SUBROUTINE >>>>>>

ENCORE

    <<<<<< CLEAN THE INSIDE OF BOUNDED ARE ONLY >>>>>

BOX

                          COMMAND                       


















GO

  mkdir
 SYNTAX
       mkdir  directory name ...
 FUNCTION
       mkdir creates new directories.  The
       standard entries dot ( . ) for the
       directory itself and dot dot ( .. )
       are automatically made.

       directory name requires write permission in the
       parent directory.  The permissions assigned
       to the new directory are modified by the current
       file creation mask set by the umask which you
       will learn about shortly.
 Assuming, that you have the necessary write permission and 
 that you are in the directory /, please enter the command for
 creating a directory file /usr/cti/admin!
 $PROMPT$
 That is correct!
 You've got it on the 2nd try.
 Good, you understand the concept.
 No, the make directory command is mkdir!
 Please type mkdir /usr/cti/admin
 You will be helped this time!
                                  
 $PROMPT$

FORGET1

 mkdir /usr/cti/admin                  
 Observe the result on the terminal!
 $PROMPT$
                          /
                          |
             ------------------------
            /      /      |     \     \
           /      /       |      \     \
          bin   etc      usr
                          |
             ---------------------------
            /      /      |      \       \
           /      /       |       \       \
        bin    lib       cti      its
                          |
                  ---------
                /         |
               /          |
              C          lib
 lib
 tmp
 proj1
 If originally the file system had the form shown 
 above, after executing the mkdir command,
 it assumes the following form!                   
                          /
                          |
             ------------------------
            /      /      |     \     \
           /      /       |      \     \
          bin   etc      usr
                          |
             ---------------------------
            /      /      |      \       \
           /      /       |       \       \
        bin    lib       cti      its
                          |
                  -----------------
                /         |         \
               /          |          \
              C          lib        admin
 lib
 tmp
 proj1