From 0f159366c3abebfb2fd8d16c293b36760c93ab7c Mon Sep 17 00:00:00 2001 From: Vincent Le Gallic Date: Sat, 26 Jul 2014 15:03:15 +0200 Subject: [PATCH] =?utf8?q?Trouve=20les=20homes=20qui=20appartiennent=20?= =?utf8?q?=C3=A0=20un=20UID=20qui=20n'a=20plus=20de=20login=20associ=C3=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- menage_home.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 menage_home.sh diff --git a/menage_home.sh b/menage_home.sh new file mode 100755 index 0000000..c62b237 --- /dev/null +++ b/menage_home.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +# Pour trouver tous les homes dont l'utilisateur a été supprimé + +# À exécuter sur zamok + +if [[ "`hostname`" != "zamok" ]]; +then + echo "À exécuter sur zamok !" + exit 1 +fi + +ls -alh /home | awk '{print $3 ":" $9}' | grep "[0-9]" | cut -d ":" -f 2 | xargs echo -- 2.39.2