From b4ee646ecc6a5cf94cdc9aee87e82c5ccc839eac Mon Sep 17 00:00:00 2001 From: Vincent Le Gallic Date: Mon, 30 Sep 2013 22:07:29 +0200 Subject: [PATCH] =?utf8?q?[bde/liste=5Fpot]=20Pour=20g=C3=A9n=C3=A9rer=20l?= =?utf8?q?a=20liste=20d'invit=C3=A9s=20et=20d'adh=C3=A9rents=20sans=20se?= =?utf8?q?=20fouler?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- bde/liste_pot/creer_liste | 16 ++++++++++++++++ bde/liste_pot/liste_invites | 16 ++++++++++++++++ bde/liste_pot/pot.sh | 13 +++++++++++++ 3 files changed, 45 insertions(+) create mode 100755 bde/liste_pot/creer_liste create mode 100755 bde/liste_pot/liste_invites create mode 100755 bde/liste_pot/pot.sh diff --git a/bde/liste_pot/creer_liste b/bde/liste_pot/creer_liste new file mode 100755 index 0000000..46a3af2 --- /dev/null +++ b/bde/liste_pot/creer_liste @@ -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 index 0000000..bcd24f0 --- /dev/null +++ b/bde/liste_pot/liste_invites @@ -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 index 0000000..b79e3ed --- /dev/null +++ b/bde/liste_pot/pot.sh @@ -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 + -- 2.39.2