Basic Linux Commands 🐧

Contents
Introduction
Task 1 : Check your Present working directory
Task 2 : Linux command to list all the files or directories including hidden files
Task 3 : Linux command to create nested directories A/B/C/D
Introduction:
Linux is an open source operating system (OS). An operating system is software that directly manages a system’s hardware and resources, like CPU, memory, and storage. The OS sits between applications and hardware and makes the connections between all of your software and the physical resources that do the work. A Command line is associated with Linux which is a doorway to access the software to perform tasks. In this short article, we will learn about 3 basic Linux commands.
Task 1:
How to check which directory you are currently working on?

"pwd" stands for present working directory. It will tell us the pathway where you are currently.
Task 2:
How to see all the files and directories including the hidden ones?

with the "ls -a" command all the files can be listed out as well as created directories.
Task 3:
How to create a directory inside a directory(Nested)

with the "mkdir" command we can create a directory/folder. "-p" stands for the parent directory. Starting from directory A nested through D.
In this small article, we have come to know a few basic commands of Linux. Happy Learning 🎉.




