Skip to main content

Command Palette

Search for a command to run...

Basic Linux Commands Day2 (Task2)

Updated
1 min readView as Markdown
Basic Linux Commands Day2 (Task2)
Y

I'm a Cloud Engineer based in India. I'm obsessed with learning, reading, and things evolving around software engineering.

Topics I write about:

•DevOps •AWS •Cloud Technologies •Linux Admin •Recent Technologies

#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.