| command | [action] |
|---|---|
| 1.1 pwd | [ prints working directory ] |
| 1.2. ls | [ displays available files in current directory ] |
| 1.3. mkdir name | [ creates new directory name ] |
| 1.4. cd directory_path | [ move to directory ] |
To check your working directory just type:
    pwd    
Let's move to the home directory and print the working directory. Type:
    cd ~/
    pwd
Now let's make a directory called 'zemi' and move into that directory. And verify our location. Type:
    mkdir zemi
    cd zemi
    pwd
To move up 1 directory relatively:
    cd ..
| command | [action] |
|---|---|
| 1.5. display | [ displays strings and values of scalar expressions ] |
    display
    display hello world    
    display
    display 2+2