#!/usr/bin/env bash validation_require_file() { local file_path="$1" if [[ ! -f "$file_path" ]]; then ui_error "Fichier requis manquant : $file_path" exit 1 fi }