bash
-
Script para copia de seguridad total [tar]
#!/bin/bash SOURCE="/home/usuario/a" TARGET="/home/usuario/"$(date +"%Y-%m-%d.total") TEMP=$(mktemp) LINK="/home/usuario/last.total" find $SOURCE -type f > $TEMP if [[ $? -eq 0 ]]; then tar…
Leer más »