Penguin
Annotated edit history of FindNotes version 2 showing authors affecting page license. View with all changes included.
Rev Author # Line
1 BenStaz 1 !!Common Find Examples
2
3 !Recursively copy files all .jpg files to a particular dir.
4
5 find . -type f -iname '*.jpg' -print0 | xargs -0 cp --target-directory=foo