Navigating the Unix file system

Listing files and directories

ls (short for list)

When you first login, your current working directory is your home directory. Your home directory has the same name as your username e.g. wug01, and it is where your personal files and subdirectories are saved. To find out what is in your home directory, type:

% ls

The ls command lists the contents of your current working directory.

There may be no files visible in your home directory, in which case the Unix prompt will be returned. Alternatively, there may already be some files inserted by the System Administrator when your account was created.

ls does not, in fact, cause all the files in your home directory to be listed, but only those ones whose name does not begin with a dot (.) Files beginning with a dot (.) are known as hidden files and usually contain important program configuration information. They are hidden because you should not change them unless you are very familiar with Unix.

To list all files in your home directory including those whose names begin with a dot, type:

% ls -a

ls is an example of a command which can take options: -a is an example of an option. The options change the behaviour of the command. There are online manual pages that tell you which options a particular command can take, and how each option modifies the behaviour of the command. (See later in this tutorial)

Making directories

mkdir (make directory)

We will now make a subdirectory in your home directory to hold the files you will be creating and using in the course of this tutorial. To make a subdirectory called unixstuff in your current working directory, type:

% mkdir unixstuff

To see the directory you have just created, type:

% ls

You can also create additional sub-directoires with a single command:

% mkdir -p unixstuff/backups

Changing directories

cd (change directory)

The command cd <directory> means ‘change the current working directory to directory’. The current working directory may be thought of as the directory you are in, i.e. your current position in the file-system tree.

To change to the directory you have just made, type:

% cd unixstuff

Type ls to see the contents (which should be empty)

The directories . and ..

In the unixstuff directory, type:

% ls -a

As you can see, in the unixstuff directory (and in all other directories), there are two special directories called “.” and “..”

In Unix, “.” means the current directory, so typing the following means stay where you are (the unixstuff directory):

% cd .

(Please note that there is a space between cd and the full stop)

This may not seem very useful at first, but using “.” as the name of the current directory will save a lot of typing.

“..” means the parent of the current directory, so typing the following will take you one directory up the hierarchy (back to your home directory). Try it now:

% cd ..

Please note that typing cd with no argument always returns you to your home directory. This is very useful if you are lost in the file system.

Path names

pwd (print working directory)

Path names enable you to work out where you are in relation to the whole file system.

E.g. to find out the absolute path name of your home directory, type cd to get back to your home directory and then type:

% pwd

The full pathname will look something like this:
/home/wug01

Your home directory (~)

  1. Type the ‘cd’ command to your home directory:
    cd
  2. Afterwards, type the following to list the contents of your unixstuff directory:
    % ls unixstuff
  3. Next, type the following:
    % ls backups
  4. You will then get a message like this:

    backups: No such file or directory

    This will happen because backups is not in your current working directory.

In order to use a command on a file (or directory) that is not in the current working directory (i.e. the directory you are currently in), you will need to do either of the following:
Option A: Use the cd command for the correct directory
Option B: Specify its full path name

To list the contents of your backups directory, you will need to type the following:

% ls unixstuff/backups

~ (your home directory)

Home directories can also be referred to by the tilde ~ character. It can be used to specify paths starting at your home directory. So typing the following will list the contents of your unixstuff directory, regardless of where you currently are within the file system:

% ls ~/unixstuff

Summary

ls – list files and directories

ls -a – list all files and directories

mkdir – make a directory

cd – directory change to named directory

cd – change to home directory

cd ~ – change to home directory

cd .. – change to parent directory

pwd – display the path of the current directory

Comments are closed.