Comment on What are the fun ways to learn and master the file management system in Linux ?
neidu3@sh.itjust.works 19 hours ago
Are you referring to how to manipulate files, or more what the various files and folders do?
Comment on What are the fun ways to learn and master the file management system in Linux ?
neidu3@sh.itjust.works 19 hours ago
Are you referring to how to manipulate files, or more what the various files and folders do?
LoveEspresso@cafe.coffee-break.cc 19 hours 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 14 hours ago
find / -iname "filename" 2>/dev/nullFind 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)