6 lines
201 B
Bash
Executable file
6 lines
201 B
Bash
Executable file
#! /bin/sh
|
|
|
|
echo -n "Total : "
|
|
#ldapsearch -x -LLL "(paiement=*)" | grep -E "(inscription|paiement\+2004)" | wc -l
|
|
|
|
ldapsearch -x -LLL | grep "historique" | cut -d ' ' -f 4 | sort | uniq -c | sort -rn
|