Ajout d'un script de statistiques sur les CMS hébergés

This commit is contained in:
Matthieu Patout 2021-12-10 09:51:31 +01:00
parent a21112225c
commit 9ca8eea590
1 changed files with 12 additions and 0 deletions

12
stats-cms.sh Normal file
View File

@ -0,0 +1,12 @@
#!/bin/sh
# Compte le nombre de fichiers spécifiques à divers CMS pour établir grosso-modo le nombre de CMS hébergés
/usr/bin/find /var/www/vhosts/ -maxdepth 4 -name wp-config.php | wc -l | sed 's/.*/Wordpress : &/' > stats-cms.txt
/usr/bin/find /var/www/vhosts/ -maxdepth 4 -name spip.png | wc -l | sed 's/.*/SPIP : &/' >> stats-cms.txt
/usr/bin/find /var/www/vhosts/ -maxdepth 4 -name association.sqlite | wc -l | sed 's/.*/Garradin : &/' >> stats-cms.txt
/usr/bin/find /var/www/vhosts/ -maxdepth 4 -name joomla.php | wc -l | sed 's/.*/Joomla : &/' >> stats-cms.txt
/usr/bin/find /var/www/vhosts/ -maxdepth 4 -name drupal | wc -l | sed 's/.*/Drupal : &/' >> stats-cms.txt
/usr/bin/find /var/www/vhosts/ -maxdepth 4 -name popuphelp.php | wc -l | sed 's/.*/Piwigo : &/' >> stats-cms.txt
/usr/bin/find /var/www/vhosts/ -maxdepth 4 -name occ | wc -l | sed 's/.*/Nextcloud : &/' >> stats-cms.txt
/usr/bin/find /var/www/vhosts/ -maxdepth 4 -name now.json | wc -l | sed 's/.*/Guppy : &/' >> stats-cms.txt
/usr/bin/find /var/www/vhosts/ -maxdepth 4 -name renfilesantispam.inc | wc -l | sed 's/.*/Grav : &/' >> stats-cms.txt
/usr/bin/find /var/www/vhosts/ -maxdepth 4 -name doku.php | wc -l | sed 's/.*/Dokuwiki : &/' >> stats-cms.txt