thvinicius
(usa Ubuntu)
Enviado em 02/12/2011 - 14:43h
Seguinte usei o primeiro comando e apareceu assim:
root@thiago:/# cp -R ~/teste/teste1/*.txt ~/teste/teste2/
cp: impossível obter estado de `/root/teste/teste1/*.txt': Arquivo ou diretório não encontrado
daí eu tentei passar o caminho:
root@thiago:/# cp -R /home/thiago/teste/teste1/*.txt /home/thiago/teste/teste2/
cp: acessando `/home/thiago/teste/teste2/': Não é um diretório
e o segundo comando o find apareceu assim:
root@:thiago/# find ~/teste/teste1/ -name '*.txt' -type f -exec sh -c 'cp -f "$@" ~/teste/teste2/' X '{}' +
find: `/root/teste/teste1/': Arquivo ou diretório não encontrado
depois passando o caminho
root@thiago:/# find /home/thiago/teste/teste1/ -name '*.txt' -type f -exec sh -c 'cp -f "$@" /home/thiago/teste/teste2/' X '{}' +
find: `/home/thiago/teste/teste1/': Não é um diretório
E desculpa a ignorância esse comando vai ser pra colocar em um script para rodar no crontab.