Skip to content

Latest commit

 

History

History
40 lines (19 loc) · 995 Bytes

solution.md

File metadata and controls

40 lines (19 loc) · 995 Bytes

Basic Linux Commands

  1. To view what's written in a file.
    • cat filename

3 1

  1. To change the access permissions of files.

    • chmod 777 foldername

Uploading 3.2.png…

  1. To check which commands you have run till now.

    • history

Uploading 3.3.png…

  1. To remove a directory/ Folder.

    • rm filename

3 4

-  ``` rmdir foldername ``` 

3 4b

  1. To create a fruits.txt file and to view the content.
    • vim fruits.txt
    • cat fruits.txt

3 5