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