Basic Linux Commands Day2 (Task2)

Basic Linux Commands Day2 (Task2)

#devOps #trainwithShubham #linux

  1. Check your present working directory

  2. List all the files or directories including hidden files: -

    ls:- command lists all the directory contents present in the current working directory

    ls -la:- command lists all the content including hidden content in the present working directory

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

    mkdir:- Makes the directories in pwd, while adding -p to it makes the following directories even if they are not existing.

    Tree: - with this command you can see the nested pattern. This command lists all the directories and files but in tree like pattern.