]> gitweb.pimeys.fr Git - scripts-20-100.git/commitdiff
[bde] Shortcut pour afficher les activites.
authorVincent <legallic@crans.org>
Tue, 17 Dec 2013 01:03:10 +0000 (02:03 +0100)
committerVincent <legallic@crans.org>
Tue, 17 Dec 2013 01:03:10 +0000 (02:03 +0100)
bde/activites.sh [new file with mode: 0755]

diff --git a/bde/activites.sh b/bde/activites.sh
new file mode 100755 (executable)
index 0000000..2d3efd0
--- /dev/null
@@ -0,0 +1,19 @@
+#!/bin/bash
+
+# Pour avoir rapidement la liste des activités
+
+export LESS="-S"
+
+for i in $@
+do
+  if [ $i = "--pot" ]
+    then pot=1;
+  fi;
+done
+
+if [ "${pot}" = "1" ]
+then
+    WHERE="WHERE titre ILIKE '%pot%' "
+fi
+
+psql bde -c "SELECT * FROM activites ${WHERE}ORDER BY debut DESC;"