Modèle:Boîte déroulante/fin
De Wiki de Projets IMA
< Modèle:Boîte déroulante
Révision datée du 7 février 2018 à 16:03 par Vdupont1 (discussion | contributions) (Page créée avec « #!/bin/sh # CONFIGURATION DIR="path" EVENTS="create" # MAIN inotifywait -m -e $EVENTS --timefmt '%Y-%m-%d %H:%M:%S' --format '%$ while read date time file do e... »)
- !/bin/sh
- CONFIGURATION
DIR="path" EVENTS="create"
- MAIN
inotifywait -m -e $EVENTS --timefmt '%Y-%m-%d %H:%M:%S' --format '%$ while read date time file do
echo "$date $time Fichier recu: $file"; rm -rf $DIR/$file; ls $DIR; echo "Has $file been removed ?";
done