LoveEspresso@cafe.coffee-break.cc to No Stupid Questions@lemmy.worldEnglish · 4 days agoWhat are the fun ways to learn and master the file management system in Linux ?message-squaremessage-square23linkfedilinkarrow-up150arrow-down11
arrow-up149arrow-down1message-squareWhat are the fun ways to learn and master the file management system in Linux ?LoveEspresso@cafe.coffee-break.cc to No Stupid Questions@lemmy.worldEnglish · 4 days agomessage-square23linkfedilink
minus-squareurushitan 漆たん@kakera.kintsugi.moelinkfedilinkarrow-up5·4 days agofind / -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)
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)