-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sh
executable file
·47 lines (40 loc) · 1.54 KB
/
build.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/bin/bash
ORIG=`pwd`
LIBROS=(
"ASIR/1/planificacion_administracion_redes/ redes_book.tex"
# "ASIR/1/ISO_operating_systems_deployment/ iso_en_book.tex"
"ASIR/2/SGBD/ sgbd_book.tex"
"DAM/1/sistemas_informaticos/ sistemas_informaticos.tex"
"DAM/1/sistemas_informaticos/ sistemas_informaticos_web.tex"
"DAM/2/desarrollo_interfaces/ desarrollo_interfaces.tex"
"DAM/2/desarrollo_interfaces/ desarrollo_interfaces.tex"
"DAM/2/sistemas_gestion_empresarial/ sistemas_gestion_empresarial.tex"
"SMR/2/SOred/ SOred.tex"
#
# "otros/aws/ aws_book.tex"
# "otros/Docker/ docker_book.tex"
# "otros/git/ git_book.tex"
"otros/hacer_documentacion/ como_hacer_documentacion.tex"
# "otros/PFsense/ pfsense_book.tex"
"temas_comunes/laravel/ laravel_book.tex"
"anexos/gestion_backups gestion_backups_anexo.tex"
"anexos/glosario glosario_anexo.tex"
"anexos/instalar_ubuntu_lts instalar_ubuntu_lts_anexo.tex"
"anexos/monitorizacion_munin monitorizacion_munin_anexo.tex"
"anexos/sistemas_monitorizacion sistemas_monitorizacion_anexo.tex"
"anexos/tabla_sistemas_numeracion tabla_sistemas_numeracion_anexo.tex"
"anexos/ubuntu_raid1 ubuntu_raid1_anexo.tex"
"anexos/virtualbox_networking virtualbox_networking_anexo.tex"
)
for LIBRO in "${LIBROS[@]}"; do
RUTA=`echo $LIBRO | cut -d" " -f1`
NAME=`echo $LIBRO | cut -d" " -f2`
#echo $RUTA
cd $RUTA
lualatex -shell-escape $NAME
makeindex $NAME
lualatex -shell-escape $NAME
lualatex -shell-escape $NAME
# cd ../../../
cd $ORIG
done