minus-squareurushitan 漆たん@kakera.kintsugi.moetoNo Stupid Questions@lemmy.world•What are the fun ways to learn and master the file management system in Linux ?linkfedilinkarrow-up5·1 month 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) linkfedilink
minus-squareurushitan 漆たん@kakera.kintsugi.moetoNo Stupid Questions@lemmy.world•How do I remove bird poop from cement and/or metal surfaces?linkfedilinkarrow-up8·3 months agoAnd ensuring you are wearing shoes that fully cover your feet, no crocs or flip flops linkfedilink
minus-squareurushitan 漆たん@kakera.kintsugi.moetoNo Stupid Questions@lemmy.world•I heard a long time ago groups of bin laden bet against all the insurance companies hoping they will go down. They did. How come I can't take out a bet or bid on simple shit like beting on Tiger DUI?linkfedilinkarrow-up7·3 months agoYou probably can: https://polymarket.com/ linkfedilink
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)