Saturday, 9 November 2019

ubundu basic coding

I am Sasikumar. Welcome To My Page

ubuntu basic coding

  1. ls - this is list is this show your directory files
    • $ ls (type and press enter key)
 
  1. cd - change directory
  • you want to go one directory? type
    • $ cd (type and press enter key)
 

  • you want to go one step back? type
    • $ cd .. (type and press enter key)
 

  • you want to come back your main root menu? type
    • $ cd (type and press enter key)
 
     
  1. mkdir -make directories(folders)
  •  you want create directory(folder)
    • $ mkdir (type and press enter key)

  1. rmdir - remove directories(folders)
  • you want delete your directories(folders)?
    • $ rmdir (type and press enter key)

  1. touch - files creator
  • you want create any files?
    • $ touch (type and press enter key)

  1. rm - remove
  • you want delete any files?
    • $ rm (type and press enter key)

  1. well I understand the next question with you. How to rename a file? well lets learn it.
        mv - move
  •  you want to rename your file?
    • $ mv <old file name> <new file name>
  1. Clear - clean your terminal
  • You want to clear your terminal?
    • $ clear (type and press enter key)
Before
After

Tree
Tree is a method to easily view all the files in the terminal.
This makes easier to view all the files.

How to install tree in terminal?

  • $ sudo snap install tree (type and press enter key)
How to open tree?
  • $ tree (type and press enter key)

No comments:

Post a Comment

HTML

HTML HTML stands for H yper t ext M arkup L anguage, and it is the most widely used language to write Web Pages. Hypertext refers to ...