Simple command implementation for Linux beginners (2)

Continue to the first Linux basic command learning.

  1. The ls command
    displays the files in the current directory. ls -a displays hidden files. ls -l displays all file attributes.Insert picture description here
    Insert picture description here
  2. The vi command
    creates a new file and can be edited after pressing i.
    Insert picture description here
    Insert picture description here
  3. The ps command
    finds running processes.
    Insert picture description here
  4. kill command
    Delete command. kill -9 force delete.
    Insert picture description here
  5. The grep command
    matches keywords and filters fields.
    Insert picture description here
  6. Date command
    Get the current date and time.
    Insert picture description here
  7. History Command
    Query the operation command made before.
    Insert picture description here
Published 4 original articles · received 1 · views 90

Guess you like

Origin blog.csdn.net/qq_43337384/article/details/105634275
Recommended