Day-2 Basic Linux Command

Day-2 Basic Linux Command

#90daysofdevops #challange

Check your present working directory.

for the present working directory, open your terminal and press: pwd

example:

List all the files or directories including hidden files.

For list out all files, command = ls

example:

But, for list out all files with all hidden files then, ls -a

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

use mkdir -p A/B/C/D/E

note: use cd command to select the folder. mkdir used to create a single directory. But, mkdir -p is used to create sub-directories under a directory. -p means path of directories .

Thank you for reading!!

Great initiative by the #trainwithshubham community. Thank you Shubham Londhe

#devops #90daysofdevops