Pages

Thursday, July 15, 2021

find difference between ; and +

Difference between {} \; and {} +


find . -exec grep chrome {} \;

or

find . -exec grep chrome {} +


find will execute grep and will substitute {} with the filename(s) found. The difference between ; and + is that with ; a single grep command for each file is executed whereas with + as many files as possible are given as parameters to grep at once.


find . -exec grep chrome {} +

find will execute grep and will substitute {} with the filename(s) found. The difference between ; and + is that with ; a single grep command for each file is executed whereas with + as many files as possible are given as parameters to grep at once.

No comments:

Post a Comment