]> gitweb.pimeys.fr Git - scripts-20-100.git/commitdiff
[bde/liste_pot] Pour générer la liste d'invités et d'adhérents sans se fouler
authorVincent Le Gallic <legallic@crans.org>
Mon, 30 Sep 2013 20:07:29 +0000 (22:07 +0200)
committerVincent Le Gallic <legallic@crans.org>
Mon, 30 Sep 2013 20:07:29 +0000 (22:07 +0200)
bde/liste_pot/creer_liste [new file with mode: 0755]
bde/liste_pot/liste_invites [new file with mode: 0755]
bde/liste_pot/pot.sh [new file with mode: 0755]

diff --git a/bde/liste_pot/creer_liste b/bde/liste_pot/creer_liste
new file mode 100755 (executable)
index 0000000..46a3af2
--- /dev/null
@@ -0,0 +1,16 @@
+#!/bin/bash
+
+cd ~/bde/liste_pot
+
+if [ ! $1 ]
+then
+  echo "Précisez le nom du pot"
+  exit 1
+else
+ ssh vincent@bde.crans.org "/usr/scripts/liste_pot/creer_liste $1 --stdout" > texformated_liste_pot_"$1".tex
+ echo "liste créée et importée"
+ pdflatex texformated_liste_pot_"$1".tex > /dev/null
+ mv texformated_liste_pot_"$1".pdf liste_pot_"$1".pdf
+ echo "pdf généré : ~/liste_pot/liste_pot_$1.pdf"
+fi
+
diff --git a/bde/liste_pot/liste_invites b/bde/liste_pot/liste_invites
new file mode 100755 (executable)
index 0000000..bcd24f0
--- /dev/null
@@ -0,0 +1,16 @@
+#!/bin/bash
+
+cd ~/bde/liste_pot
+
+if [ ! $1 ]
+then
+  echo "Précisez le nom du pot"
+  exit 1
+else
+ ssh vincent@bde.crans.org "/usr/scripts/liste_pot/liste_invites $@ --stdout" > texformated_liste_invites_"$1".tex
+ echo "liste d'invités créée et importée"
+ pdflatex texformated_liste_invites_"$1".tex > /dev/null
+ mv texformated_liste_invites_"$1".pdf liste_invites_"$1".pdf
+ echo "pdf généré : ~/liste_pot/liste_invites_$1.pdf"
+fi
+
diff --git a/bde/liste_pot/pot.sh b/bde/liste_pot/pot.sh
new file mode 100755 (executable)
index 0000000..b79e3ed
--- /dev/null
@@ -0,0 +1,13 @@
+#!/bin/bash
+
+cd ~/bde/liste_pot
+
+if [ ! $1 ]
+then
+  echo "Précisez le nom du pot"
+  exit 1
+else
+  ./creer_liste "$1"
+  ./liste_invites $@
+fi
+