vote up 0 vote down star

I am trying to copy all jpgs from 1 directory to another but only new files and ones that have been updated.

I am using the following command:

\cp -uf /home/ftpuser1/public_html/ftparea/*.jpg /home/ftpuser2/public_html/ftparea/

And I am getting the error:

-bash: /bin/cp: Argument list too long

I am assuming that there are 2 many files in this directory for the cp command to work

I have also tried:

find  /home/ftpuser1/public_html/ftparea/ -name "*jpg" -exec cp -uf {} /home/ftpuser2/public_html/ftparea/

and got the following:

find: missing argument to `-exec'

Any ideas?

flag

1  
You forgot the \; argument in the end of the find command, that's why it isn't working. – spatz Aug 19 at 14:32

2 Answers

vote up 1 vote down check

You need to make sure to include the final “\;” to finish the command that -exec should execute.

link|flag
thanks! silly me! – Lizard Aug 19 at 14:35
vote up 0 vote down

Using find you shouldn't have the brackets in quotes. Try this

find  /home/ftpuser1/public_html/ftparea/ -name "*jpg" -exec cp -uf {} /home/ftpuser2/public_html/ftparea/ \;
link|flag
still getting same error: find: missing argument to `-exec' – Lizard Aug 19 at 14:31
did you include the \; at the end of the find command? – Glen Aug 19 at 14:34

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.