De acordo com a resposta do AskUbuntu " O que significa" cp: omitting directory "? ":
By default,
cp
copies only the direct files in, and not subdirectories in the directory. The messagecp: omitting directory 'directory'
warns you that the mentioned directory is not copied.To do so, specify the
-r
(or--recursive
) option:sudo cp -r ~/Transfers/ZendFramework-1.11.4-minimal/library/Zend/* ~/public_html/cmsk.dev/library/
The manual page (command:
man cp
) contains an overview of the available options.