How do you find a file in Linux?

Question

can you help me with this question

Answer ( 1 )

  1. find /home -name “file.txt” # Search by name

    find /var/log –type f -size +50M # Find files larger than 50MB

    locate file.txt # Uses a pre-built index for fast search

Leave an answer