Difference between revisions of "Find Command"

Wiki.TerraBase.info
Jump to navigation Jump to search
(Created page with "find / -not \( -path /proc -prune \) -name squid")
 
m
 
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 10: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/*"