Enviado em 02/05/2016 - 10:22h
Olá pessoal... sou inciante em Linux (Centos 6.5) e estou criando um shell para zipar algumas pastas e enviá-las a Amazon S3. O arquivo .sh que criei é o seguinte:
#!/bin/sh
echo 'Started'
date +'%a %b %e %H:%M:%S %Z %Y'
zip -r camarawestfalia.zip camarawestfalia/
mv camarawestfalia.zip bkp/
s3cmd sync --recursive --preserve /data/bkp s3://bkp-geral-marco
date +'%a %b %e %H:%M:%S %Z %Y'
echo 'Finished'
15 9 * * 4 /data/copiaS3.sh > log-copia.txt