Resctructuration pour faciliter la gestion des programmes.
This commit is contained in:
18
programme.sh
Executable file
18
programme.sh
Executable file
@ -0,0 +1,18 @@
|
||||
#!/bin/bash
|
||||
|
||||
function path_to_name {
|
||||
PROGRAMPATH=$1
|
||||
echo ${PROGRAMPATH//\_/\ }
|
||||
}
|
||||
PWD=$(pwd)
|
||||
for directory in $(find . -name programme -type d); do
|
||||
cat > programme_options.tex <<EOB
|
||||
\\newcommand{\\formation}{$(path_to_name $(basename ${directory%/programme}))}
|
||||
\\newcommand{\\dossier}{$directory}
|
||||
EOB
|
||||
#cat programme_options.tex
|
||||
xelatex programme.tex
|
||||
xelatex programme.tex
|
||||
mv programme.pdf $directory/plan_de_formation_$(basename ${directory%/programme}).pdf
|
||||
rm -f programme_options.tex
|
||||
done
|
Reference in New Issue
Block a user