From 2ee882e8a2eb70f957ba2b1adf52367f1455312c Mon Sep 17 00:00:00 2001 From: miguel Date: Fri, 9 Dec 2022 16:43:27 +0000 Subject: [PATCH] docs(file-struct): adding info on the Readme --- subjects/devops/file-struct/README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/subjects/devops/file-struct/README.md b/subjects/devops/file-struct/README.md index 556f61ab..e46b0267 100644 --- a/subjects/devops/file-struct/README.md +++ b/subjects/devops/file-struct/README.md @@ -35,6 +35,14 @@ $ ls ### Hints +In order to create new directories or folders in Linux or Unix-like operating systems you need to use the `mkdir` command. `mkdir` stands for “make directory.” you can use it like so: + +```console +$ mkdir my_folder +$ ls +my_folder +``` + In this exercise you wil use the command `tree` to see the file structure as in the example bellow. `tree` is a recursive directory listing program that produces a depth-indented listing of files. With no arguments, `tree` lists the files in the current directory. You will also need to use the `tar` command which helps to create, extract, and list archive contents. You can find more about the command in the link bellow.