Day 2 of 90DaysOfDevOps

Today's task is to perform the following steps:

  1. Check your present working directory.

Used Command pwd to check present working directory:

  1. List all the files or directories including hidden files.

    Using -a lists the hidden files while using -all lists all files with permissions and user account details

  2. Create a nested directory A/B/C/D/E

As you can see, I was unable to create the directory using :

This is because /a would have created the directory in root folder and I am not logged in as root. Though same can be accomplished using "sudo" appended at the start of mkdir command.