How do I run a find command to find php files but I exclude a folder i.e. /usr/local/bin?
|
feedback
|
|
Prune it.
| |||
|
feedback
|
|
You can use the find command in linux to do this. Something like this should work. find / \! -path "/usr/local/bin/*" -name "*.php" | |||
|
feedback
|