Day 1 Learning Linux Basic commands

Day 1 Learning Linux Basic commands

·

1 min read

Table of contents

No heading

No headings in the article.

Today I have started Learning Linux basic commands. taught by Kunal Kushwaha

#day1

#Linuxwithkunal

#DevOpswithkunal

#100daysofdevops

#CommunityClassroom

#selflearning

The commands are as follows:

  1. mkdir
  2. cd
  3. ls
  4. cat >

I have created a file called testcloud using mkdir on desktop.

mkdir testcloud

To open the created directory:

cd testcloud

To list files in the testcloud directory:

ls

To go back to previous directory. I used the following command.

cd ..

To create a file:

cat > hello

To save text press enter and to exit ctrl^c

source : Kunal YT video

Image: Screenshot (20).png