14 lines
426 B
Bash
Executable file
14 lines
426 B
Bash
Executable file
#!/bin/bash
|
|
echo "Cierre DIA si lo tiene abierto"
|
|
read -p "Y pulse INTRO para continuar "
|
|
echo
|
|
LISTA=(Ordenador Redes Internet Servidores-Isometrico Seguridad-Isomatrico)
|
|
# Recorremos Shapes/Sheets y Copiamos
|
|
for i in $(echo ${!LISTA[@]})
|
|
do
|
|
echo " Copiando ${LISTA[$i]}"
|
|
cp ${LISTA[$i]}/shapes/* ~/.dia/shapes/
|
|
cp ${LISTA[$i]}/sheets/* ~/.dia/sheets/
|
|
done
|
|
echo "Abra DIA y compruebe el nuevo conjunto de Iconos"
|
|
echo
|