Browse - computer tips - system wide find stuck in proc or devDate: 2009jun11 OS: Linux Q. My big find is stuck in /proc -- what can I do? A. Generally you can't grep in /proc /sys and /dev so if you want to search the entire filesystem do this: find / -path /proc -prune -o /sys -prune -o -path /dev -prune -o -type f -exec grep SOMETHING {} \; This searches everywhere but /proc /sys and /dev
Add a commentSign in to add a comment | Advertisements:
|