From the course: LPI Linux Essentials (010-160) Cert Prep

Unlock this course with a free trial

Join today to access over 25,300 courses taught by industry experts.

Manipulating directories

Manipulating directories

- Now you may think of directories as folders because most graphical user interface file managers are going to represent these directories by using a file folder icon. Naturally, Linux provides that text based command line environment as well, and you can manipulate these directories from within it. These include directory specific commands to create and delete these directories, as well as some file manipulation commands that we discussed in our earlier lessons. The first one we're going to talk about here is the make directory command, which is mkdir. This is used to create a new directory. You can do this by typing mkdir, and then the name of the directory you want to create. For example, if I use mkdir newfolder, this will create a new directory called newfolder. This is similar to using the right click mouse button and then selecting newfolder within your Windows desktop environment. Now if you want to learn a lot…

Contents