<aside> 🐧 echo (arguments) β†’ Print the given arguments.

</aside>

<aside> 🐧 pwd β†’ shows where you currently are.

</aside>

<aside> 🐧 ls β†’ List all the present directories.

</aside>

<aside> 🐧 ls -a β†’ List all the directories including hidden files.

</aside>

<aside> 🐧 ls -l β†’ List all the directories with their descriptions.

</aside>

<aside> 🐧 ls -la β†’ List all the directories with their description including hidden files.

</aside>

<aside> 🐧 cd (directory name) β†’ Change the directories.

</aside>

<aside> 🐧 cd .. β†’ Going back to the parent directories.

</aside>

<aside> 🐧 cd - β†’ Going back to the root directories.

</aside>

<aside> 🐧 mkdir (directory name) β†’ For creating new directories.

</aside>

<aside> 🐧 mkdir -p (directory name / Sub-directory name) β†’ For making a sub-directory into the new directory.

</aside>

<aside> 🐧 touch (file name) β†’ For creating a new file.

</aside>

<aside> 🐧 file (file name) β†’ To check whether the content is available or not in that file.

</aside>

<aside> 🐧 gedit (file name) β†’ To edit a file.

</aside>

<aside> 🐧 cat (file name) β†’ Show the content available on that file.

</aside>

<aside> 🐧 ctrl + r β†’ For doing a reverse search.

</aside>

<aside> 🐧 cp (from file_name) (to file_name) β†’ Copy one file to another file.

</aside>

<aside> 🐧 mv (from file_name) (to file_name) β†’ Move one file to another file.

</aside>

<aside> 🐧 rm (file name) β†’ To remove a file.

</aside>