Spaces:
Running
Running
Update recover.sh
Browse files- recover.sh +2 -2
recover.sh
CHANGED
@@ -15,8 +15,8 @@ if [ ! -f "$archivo_entrada" ]; then
|
|
15 |
fi
|
16 |
|
17 |
# Leer el archivo línea por línea
|
18 |
-
for linea in $(cat $archivo_entrada) do
|
19 |
-
nombre
|
20 |
valor=$(echo "$linea" | cut -d ":" -f2)
|
21 |
# Crear el directorio si no existe
|
22 |
dir=$(dirname "$nombre")
|
|
|
15 |
fi
|
16 |
|
17 |
# Leer el archivo línea por línea
|
18 |
+
for linea in $(cat $archivo_entrada); do
|
19 |
+
nombre=$(echo "$linea" | cut -d ":" -f1)
|
20 |
valor=$(echo "$linea" | cut -d ":" -f2)
|
21 |
# Crear el directorio si no existe
|
22 |
dir=$(dirname "$nombre")
|