I'm trying to make it so that every file on the harddrive that is not on my exclusion list is copied from dir1 to dir2.
for f in {find /dir1 ! -name "*[.DS_Store\.localized\.strings\.db] ! -path "*//Library/*" -print}; do
cp $f dir2
This code keeps faulting and I cannot get the loop to start. The find function works fine on its own, I just can't pair it with the copy function whenever it gets a hit. Suggestions?
Doing this in mac terminal btw.
forsyntax doesn't use braces;[.DS_Store\.localized\.strings\.db]is the same as[.DS_abdegilnorst];-pathwill never have a double slash//in it. Among other problems with your code. – geekosaur May 11 '12 at 20:23