Find Command: Difference between revisions
Jump to navigation
Jump to search
Created page with "find / -not \( -path /proc -prune \) -name squid" |
mNo edit summary |
||
Line 1: | Line 1: | ||
find / -not \( -path /proc -prune \) -name squid | Hmmm, OK: find / -not \( -path /proc -prune \) -name squid | ||
Much Better: find / -type f -size +100M -not -path "/WhatEverFirstPath/*" -not -path "/WhatEverSecondPath/*" |
Latest revision as of 17:07, 10 October 2021
Hmmm, OK: find / -not \( -path /proc -prune \) -name squid
Much Better: find / -type f -size +100M -not -path "/WhatEverFirstPath/*" -not -path "/WhatEverSecondPath/*"