2023-04-13 00:04:20 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2023-06-04 19:38:42 +02:00
|
|
|
# Variables
|
|
|
|
realpath="$(readlink -f "$0")"
|
2023-04-13 00:04:20 +02:00
|
|
|
|
2023-06-04 19:38:42 +02:00
|
|
|
# cd
|
|
|
|
cd "$(dirname "$realpath")/../share/$(basename "$realpath")" || exit
|
|
|
|
unset realpath
|
2023-04-13 00:57:54 +02:00
|
|
|
|
2023-06-04 19:38:42 +02:00
|
|
|
# Fonction pour fabriquer une ligne de la longueur d'un tiers du terminal
|
|
|
|
makeline() {
|
|
|
|
local cols line
|
|
|
|
cols="$(($(tput cols) / 3))"
|
|
|
|
while [ "${#line}" -lt "$cols" ]; do
|
|
|
|
line="${line}${1}"
|
2023-04-13 00:04:20 +02:00
|
|
|
done
|
2023-06-04 19:38:42 +02:00
|
|
|
printf %s "$line"
|
|
|
|
}
|
2023-04-13 00:04:20 +02:00
|
|
|
|
2023-06-04 19:38:42 +02:00
|
|
|
# Fonction pour afficher un séparateur
|
|
|
|
separator() {
|
|
|
|
local line
|
|
|
|
line="$(makeline '=')"
|
|
|
|
printf '\n%s\n\t%s\n%s\n' "$line" "$*" "$line"
|
2023-04-13 00:04:20 +02:00
|
|
|
}
|
|
|
|
|
2023-06-04 19:38:42 +02:00
|
|
|
# Procédure principale
|
|
|
|
for i in ./commands.d/*; do
|
|
|
|
separator "$(basename "$i")"
|
|
|
|
"$i"
|
2023-04-13 00:04:20 +02:00
|
|
|
done
|
|
|
|
|