#!/bin/bash

# Repertoire cible 
TARGET_DIR="."

# Suppression du fichier
if [ -f "$TARGET_DIR/index.html" ]; then
  rm "$TARGET_DIR/index.html"
  echo "Fichier de maintenance supprime."
else
  echo "Aucun fichier index.html trouve dans $TARGET_DIR."
fi
