Skip to content

Instantly share code, notes, and snippets.

View gautiermichelin's full-sized avatar

GautierMichelin gautiermichelin

View GitHub Profile
@gautiermichelin
gautiermichelin / improve_performances.sh
Last active March 13, 2025 19:32
improve_performances.sh
#!/bin/bash
update_config_param() {
local param_name="$1"
local config_file="$2"
local new_value="$3"
if [[ ! -f "$config_file" ]]; then
echo "Erreur : Le fichier $config_file n'existe pas."
return 1