Jun 132013
 

Problema del giorno: Come copiare solamente i file modificati oggi in un server remoto con scp?

Facile, basta eseguire un comando come questo

find /your/file/path -mtime 0 -print | awk '{print "scp "$0" user@hostname:/a/b"}' | sh