Linux Ubuntu

| Jul 2, 2024 min read

Introduction Linux

Top 20 Linux code.

Deep learning in Linux scale. I’m creating a list.

  1. cd: Changes the current directory.
  2. mkdir: Creates a new directory.
  3. mv: Moves or renames files and directories.
  4. cp: Copies files and directories.
  5. rm: Removes (deletes) files and directories.
  6. touch: Creates an empty file or updates the access timestamp of an existing file.
  7. ln: Creates a symbolic link (shortcut) to a file or directory.
  8. cat: Displays the contents of a file.
  9. clear: Clears the terminal screen.
  10. echo: Prints the given text to the terminal.
  11. less: Displays file contents one page at a time.
  12. man: Displays the manual pages for a command.
  13. uname: Prints system information, including the operating system name.
  14. whoami: Prints the current user’s username.
  15. tar: Archives and extracts files.
  16. grep: Searches for a specific pattern in files or outputs.
  17. head: Displays the first few lines of a file.
  18. tail: Displays the last few lines of a file.
  19. diff: Compares and displays differences between two files.
  20. cmp: Compares two files byte by byte to check for equality.