• LoveEspresso@cafe.coffee-break.ccOP
    link
    fedilink
    English
    arrow-up
    4
    ·
    1 day ago

    Had no idea that it was such a huge topic :))

    Let’s start off with something very simple : how to track a particular file existing in your system ?

    • urushitan 漆たん@kakera.kintsugi.moe
      link
      fedilink
      arrow-up
      5
      ·
      22 hours ago
      find / -iname "filename" 2>/dev/null
      

      Find a file by (case insensitive) file name. Search the whole filesystem (/). Pipe errors to /dev/null (since it will output permission denied errors trying access directories you don’t have access to, among other things)