I think one of the more tangible elements of tracking my progress while being a coding beginner is tracking how my habits have changed in the mos...
For further actions, you may consider blocking this person and/or reporting abuse
lsis good for finding stuff when you basically know where the target "stuff" is. If you want real power, look at thefindcommand.find <DIR> -mtime -3find <DIR> -mtime +<DAYS>find <DIR> -type f -name "*.iso"find <DIR> -type lfind <DIR> -perm /0002 -type fThe possibilities are near endless, especially once you add
find's-execbuilt-in function or pipeline yourfindto other tools viaxargs(e.g.,find <DIR> -type f | xargs grep -l <STRING>will provide you a list of files that contain a given string).This is incredibly helpful! Thanks so much, I'm going to try these out ASAP!
"seems to be a really powerful tool"? A good half of your operating system is made of bash scripts! 😉